yequari.com/themes/genesis/layouts/_default/list.html

15 lines
347 B
HTML

{{ define "main" }}
<div id="sidebar"></div>
<div id="content">
<h1>{{ .Title }}</h1>
{{ range .Pages.ByPublishDate.Reverse }}
<p>
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<a class="summary" href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
</a>
</p>
{{ end }}
</div>
{{ end }}