blob: f0748443543e5a2126d0e9fee6807139869932ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{{ define "main" }}
<div class="taxonomy-term">
<h2>{{ .Title }}</h2>
<div class="posts-list">
{{ range .Pages }}
<li style="list-style-type: none; margin-bottom: 12px">
<span class="post-date" {{ if .Site.Params.groupByYear }}grouped{{ else }}ungrouped{{ end }}>
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
{{ .Date.Format "2006-01-02" }}
</time>
</span>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ else }}
<p>该分类下还没有文章。</p>
{{ end }}
</div>
</div>
{{ end }}
|