18 lines
379 B
HTML
18 lines
379 B
HTML
|
{{ partial "header.html" . }}
|
||
|
|
||
|
<section id=content>
|
||
|
<ul class=posts_listing>
|
||
|
{{ range .Pages }}
|
||
|
<li>
|
||
|
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
||
|
<div id=date>
|
||
|
<time>{{ .Date.Format (.Site.Params.dateform | default "January 2006") }}</time>
|
||
|
</div>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</section>
|
||
|
|
||
|
{{ partial "footer.html" . }}
|
||
|
|