You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
487 B
HTML

{{ define "title" }}
{{ .Title }} ⏎
{{ end }}
{{ define "main" }}
{{- partial "parent-link" . -}}
<div class="container">
<h1 class="page-title">{{ .Section }}</h1>
{{ if gt (len .Pages) 0 }}
<ul>
{{ range .Pages | }}
<li>
<a href="{{.Permalink}}">{{ dateFormat "2006-01-02" .Date.Local }} - {{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ else }}
{{- partial "work-in-progress" . -}}
{{ end }}
</div>
{{ end }}