github.io/layouts/_default/dis_taxonomy.html

10 lines
198 B
HTML
Raw Normal View History

{{ define "main" }}
{{ .Content }}
<ul class='contents'>
{{ range .Pages }}
<li>
<a href='{{ .Permalink }}'>{{ .Date.Format "2006/01/02" }} - {{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}