23 lines
522 B
HTML
23 lines
522 B
HTML
{{ partial "header.html" . }}
|
|
|
|
<section id=content>
|
|
<ul class=posts_listing>
|
|
{{ range first 5 (where .Pages "Section" "posts") }}
|
|
<li>
|
|
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
|
<div id=date>
|
|
<time>{{ .Date.Format (.Site.Params.dateform | default "January 2006") }}</time>
|
|
</div>
|
|
<p>{{ .Summary }}</p>
|
|
|
|
<div>
|
|
<a href="{{ .RelPermalink }}">Read More…</a>
|
|
</div>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</section>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|