aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/term.html
blob: a76a9352a869df75cafb95a111e285e0d992bd6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
<main>
    <h2>{{ .Title }}</h2>

    <ul class=blog-posts>
        {{ range .Pages }}
        <li>
            <time datetime={{ .Date.Format "2006-01-02" }}>{{ .Date.Format "2006-01-02" }}</time>
            <a href={{ .Permalink }}>{{ .Title }}</a>
        {{ else }}
            <p>该分类下还没有文章。</p>
        {{ end }}
    </ul>
</main>
{{ end }}