motarawneh.com/layouts/_default/list.html
2020-09-29 08:02:48 -05:00

16 lines
358 B
HTML

{{ define "main" }}
<main>
<header class="section page-header">
<div class="container">
<h1 class="page-title">{{ .Title }}</h1>
</div>
</header>
{{ range .Pages }}
<article>
<h2>{{ .Title }}</h2>
<datetime>{{ .Date.Format "January 2, 2006" }}</datetime>
<a href="{{ .Permalink }}">Read more</a>
</article>
{{ end }}
</main>
{{ end }}