website/layouts/_default/list.html

27 lines
950 B
HTML
Raw Normal View History

{{ define "stylesheet" }}{{ $scss := resources.Get "/_default/list.scss" }}{{ $style := $scss | resources.ToCSS }}
2020-09-26 17:57:12 +02:00
<link rel="stylesheet" href="{{ $style.Permalink }}" type="text/css" media="screen" rel="preload" />
2020-09-14 16:24:02 +02:00
{{ end }}
{{ define "main" }}
2020-10-05 09:57:10 +02:00
<main>
<div class="container">
2020-11-12 09:57:45 +01:00
<section class="section posts">
<div class="section posts inner">
{{ range .Pages }}
<a href="{{ .Permalink }}">
<article>
<h1><span>{{ .Title }}</span></h1>
{{ with .Description }}<p class="description">{{ . }}</p>{{ end }}
<p class="meta" title="{{ .Date.Format "2 Jan 2006, 15:04 MST" }}">
<span class="date">{{ .Date.Format "2 January 2006" }}</span>
<span class="author">{{ with .Params.author }}by {{ end }}{{ .Params.author }}</span>
</p>
</article>
</a>
{{ end }}
</div>
2020-10-05 09:57:10 +02:00
</section>
</div>
2020-09-14 16:24:02 +02:00
</main>
{{ end }}