19 lines
320 B
HTML
19 lines
320 B
HTML
{{ template "_style.html" .}}
|
|
{{ template "_header.html" .}}
|
|
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<ul>
|
|
{{ range $.Posts }}
|
|
<li>
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a><br>
|
|
<small>{{ .DatePublished.Format "January 2, 2006" }}</small>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
|
|
{{ .Content }}
|
|
|
|
{{ template "_footer.html" .}}
|