motarawneh.com/layouts/_default/list.html

16 lines
358 B
HTML
Raw Normal View History

2020-09-29 13:02:48 +00:00
{{ 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 }}