13 lines
266 B
HTML
13 lines
266 B
HTML
{{ define "main" }}
|
|
<section>
|
|
<hr>
|
|
|
|
{{ range (where .Site.RegularPages "Type" "in" "posts") }}
|
|
<h3>
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
{{ .Date | time.Format "(2006-01-02)" }}
|
|
</h3>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|