Modify list template for better readability

This commit is contained in:
Zhang Liang 2018-03-04 19:44:52 +08:00
parent 6b05e21804
commit bb3d1a1c64

View File

@ -6,13 +6,29 @@
{{ .Content }}
<ul>
<table class="sortable">
<tr>
<td>ID</td>
<td>名称</td>
<td>序列</td>
<td>创建日期</td>
<td>最后修改日期</td>
</tr>
{{ range (where .Data.Pages "Section" "!=" "") }}
<li>
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
<a href="{{ .URL }}">{{ .Title }}</a>
</li>
<tr>
<td>{{ .Params.code }}</td>
<td><a href="{{ .URL }}">{{ .Title }}</a></td>
<td>
{{ if fileExists (printf "content/post/%s.json" .File) }}
<a href="{{ printf "post/%s.json" .File }}">{{ printf "%s.json" .File }}</a>
{{ else }}
暂无
{{ end }}
</td>
<td>{{ .Date.Format "2006/01/02" }}</td>
<td>{{ .Lastmod.Format "2006/01/02" }}</td>
</tr>
{{ end }}
</ul>
</table>
{{ partial "footer.html" . }}