aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/single.html
blob: 2f71bdcd0f89a140a47875ab1ca06a12ed67d817 (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
{{ define "main" }}
<header>
  <a href=/>回到首页</a>
</header>
<hr>

<article>
    <header>
        <h1>{{ .Title }}</h1>
        <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 }}
        </div>
    </header>

    <div class=body>
        {{ .Content }}
    </div>
</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 }}