hugo-xmin/layouts/_default/list.html

35 lines
841 B
HTML
Raw Normal View History

{{ partial "header.html" . }}
{{if not .IsHome }}
<h1>{{ .Title }}</h1>
{{ end }}
{{ .Content }}
<table class="sortable">
<tr>
<th>ID</th>
<th>名称</th>
<th>序列或题库</th>
<th>创建日期</th>
</tr>
{{ range (where .Data.Pages "Section" "!=" "") }}
<tr>
<td>{{ .Params.code }}</td>
<td><a href="{{ .URL }}">{{ .Title }}</a></td>
<td>
{{ if fileExists (printf "static/seq/%s.json" .File) }}
<a href="{{ printf "/seq/%s.json" .File }}">{{ printf "%s.json" .File }}</a>
{{ else if fileExists (printf "static/seq/%s.csv" .File) }}
<a href="{{ printf "/seq/%s.csv" .File }}">{{ printf "%s.csv" .File }}</a>
{{ else }}
暂无
{{ end }}
</td>
<td>{{ .Date.Format "2006/01/02" }}</td>
</tr>
{{ end }}
</table>
{{ partial "footer.html" . }}