aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/single.html
blob: de3d1481dc026c29f622954be4631eb0bd801b94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{{ define "main" }}
<header>
	<a href= /><code>cd ~</code></a>
</header>
<hr>
<article>
	<header>
	<h1>{{ .Title }}</h1>
	{{ if .Params.showMeta }}
	<div class=meta>
		<time datetime={{ .Date.Format "2006-01-02T15:04:05Z07:00" }}>{{ .Date.Format "2006-01-02" }}</time>
		{{ with .Params.categories }}
		<span class=cats>[
			{{- range $index, $cat := . -}}
			{{- if $index }} · {{ end -}}<a href=/categories/{{ $cat | urlize }} />{{ $cat }}</a>
			{{- end -}}
			]
		</span>
		{{ end }}
		{{ with .Params.tags }}
		<span class=tags>
			{{- range $index, $tag := . -}}
			{{- if $index }}, {{ end -}}<a href=/tags/{{ $tag | urlize }} />#{{ $tag }}</a>
			{{- end -}}
		</span>
		{{ end }}
	</div>
	{{ end }}
</header>
		{{ .Content }}
</article>
<hr>

<footer>
	<p>条目共享:遵循 <a href=https://creativecommons.org/licenses/by-nc-sa/4.0/ rel="license noopener">CC BY-NC-SA 4.0</a> 协议。
	</p>
	<p>交流通道:向 <a href="mailto:im@verdant.ee?subject=回复《{{ .Title }}》">im@verdant.ee</a> 发送一封 <a
			href=https://useplaintext.email />纯文本邮件</a>。</p>
</footer>
{{ end }}