Files
website-hugo/themes/lhs/layouts/blog/list.html
2023-11-07 15:17:57 +00:00

35 lines
1.0 KiB
HTML

{{ define "title" }}
{{ .Title }}
{{ end }}
{{ define "subtitle" }}
{{ .Params.subtitle }}
{{ end }}
{{ define "content" }}
{{ .Content }}
<p><i>Subscribe to our <a href="index.xml" type="application/rss+xml" >RSS feed</a> to keep up to date with new posts.</i></p>
{{- range .Data.Pages.GroupByDate "2006" }}
<h3 id="{{ .Key }}">{{ .Key }}</h3>
{{- range .Pages }}
{{ $image := .Resources.GetMatch .Params.listing_image }}
{{ $image = $image.Fill "512x512 Center jpg" }}
<div class="box">
<div class="columns">
<div class="column is-one-quarter has-text-centered is-hidden-mobile">
<img src="{{ $image.RelPermalink}}" class="image is-inline-block">
</div>
<div class="column">
<p><a href="{{ .Permalink }}">{{.Title}}</a> - {{ .Params.author }}<br />
<span class="is-size-6">{{ dateFormat "Jan 2, 2006" .PublishDate }}</span>
</p>
<p class="is-size-6"><i>{{ .Summary }}</i></p>
</div>
</div>
</div>
{{- end }}
{{- end }}
{{ end }}