Files
tplate/web/templates/404.tmpl

16 lines
487 B
Cheetah

{{- define "404" }}
{{- /* 复用文章列表模板 */ -}}
{{- template "post/list" . }}
{{- /* 当请求存在且 URL 不是 / 时,显示文章不存在 */ -}}
<script>
(function() {
const path = window.location.pathname;
if (path !== "/" && document.querySelector('main')) {
const block = document.createElement('blockquote');
block.innerHTML = `<code>${path}</code> 页面不存在`;
document.querySelector('main').prepend(block);
}
})();
</script>
{{- end }}