mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-06 00:33:39 +00:00
19 lines
331 B
HTML
19 lines
331 B
HTML
{{ partial "header.html" . }}
|
|
|
|
{{if not .IsHome }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
|
|
<ul>
|
|
{{ range (where .Data.Pages "Section" "!=" "") }}
|
|
<li>
|
|
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
|
|
{{ partial "footer.html" . }}
|