aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/single.html
blob: 3006c56352fe19b8ca232398771c52df23198417 (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 class="post-header">
    <span class="site-title"><a href="{{ "" | relURL }}">{{ .Site.Title }}</a></span>
    <nav>{{- partial "nav.html" . -}}</nav>
</header>

<hr>

<article class="h-entry">
    <header class="entry-meta">
        <h1 class="p-name post-title">{{ .Title }}</h1>
        <div class="meta-line">
            <time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
                {{ .Date.Format "2006-01-02" }}
            </time>
            
            {{ with .Params.categories }}
            <span class="meta-categories">
                [{{ range $index, $cat := . }}{{ if $index }} · {{ end }}<a href="/categories/{{ $cat | urlize }}/" class="p-category">{{ $cat }}</a>{{ end }}]
            </span>
            {{ end }}
        </div>
    </header>

    <div class="e-content entry-body">
        {{ .Content }}
    </div>
</article>

<hr>

<footer class="post-footer">
    <div class="post-declaration">
        <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>
    </div>
</footer>

{{ end }}