abdullahtarawneh.com/layouts/_default/list.html
2020-10-16 15:00:32 -05:00

24 lines
660 B
HTML

{{ define "title" }}
{{.Title}} | {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<main>
<header class="section page-header">
<div class="container">
<h1 class="page-title">{{ .Title }}</h1>
</div>
</header>
<section class="section list">
<div class="container">
{{ range .Pages }}
<a class="list-item" href="{{ .Permalink }}">
<img class="list-item__image" src="{{.Permalink}}cover.jpg">
<h2 class="list-item__title">{{ .Title }}</h2>
<p class="list-item__summary">{{.Summary}}</p>
<datetime class="list-item__date">{{ .Date.Format "January 2, 2006" }}</datetime>
</a>
{{ end }}
</div>
</section>
</main>
{{ end }}