abdullahtarawneh.com/layouts/_default/list.html

24 lines
684 B
HTML
Raw Normal View History

2020-10-10 19:09:30 +00:00
{{ 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 }}
<article class="list-item">
{{ with .Params.cover }}
<img class="list-item__image" src="{{.}}">
{{end}}
2020-10-10 19:09:30 +00:00
<h2 class="list-item__title">{{ .Title }}</h2>
2020-10-16 20:00:32 +00:00
<p class="list-item__summary">{{.Summary}}</p>
2020-10-10 19:09:30 +00:00
<datetime class="list-item__date">{{ .Date.Format "January 2, 2006" }}</datetime>
<a class="list-item__readmore" href="{{ .Permalink }}">Read more...</a>
</article>
2020-10-10 19:09:30 +00:00
{{ end }}
</div>
</section>
</main>
{{ end }}