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>
|
2024-02-26 11:41:39 +00:00
|
|
|
{{ with .Content }}
|
|
|
|
<section>
|
|
|
|
<div class="container">
|
|
|
|
{{.}}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
2020-10-10 19:09:30 +00:00
|
|
|
<section class="section list">
|
|
|
|
<div class="container">
|
|
|
|
{{ range .Pages }}
|
2024-02-26 11:41:39 +00:00
|
|
|
<article class="list-item">
|
|
|
|
<a class="list-item__link" href="{{ .Permalink }}">
|
|
|
|
{{- $cover := ($.Resources.ByType "image").GetMatch "{*cover*,*thumbnail*,*featured*}" -}}
|
|
|
|
{{ with $cover }}
|
|
|
|
<img class="list-item__image" src="{{.Permalink}}">
|
|
|
|
{{end}}
|
|
|
|
<h2 class="list-item__title">{{ .Title }}</h2>
|
|
|
|
</a>
|
2020-10-16 20:00:32 +00:00
|
|
|
<p class="list-item__summary">{{.Summary}}</p>
|
2020-10-18 23:01:57 +00:00
|
|
|
</article>
|
2020-10-10 19:09:30 +00:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
{{ end }}
|