This repository has been archived on 2021-08-12. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-08-31 09:40:11 -04:00
|
|
|
{{ define "main" }}
|
|
|
|
<content>
|
|
|
|
{{ if .Data.Singular }}
|
|
|
|
<h3 style="margin-bottom:0">Filtering for "{{ .Title }}"</h3>
|
|
|
|
<small>
|
|
|
|
<a href="{{ "/blog" | relURL }}">Remove filter</a>
|
|
|
|
</small>
|
|
|
|
{{ end }}
|
2020-10-01 10:12:16 -04:00
|
|
|
<ul class="blog-posts">
|
2020-08-31 09:40:11 -04:00
|
|
|
{{ range .Pages }}
|
|
|
|
<li>
|
|
|
|
<span>
|
|
|
|
<i>
|
|
|
|
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
|
|
|
|
{{ .Date.Format "02 Jan, 2006" }}
|
|
|
|
</time>
|
|
|
|
</i>
|
|
|
|
</span>
|
|
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
|
|
</li>
|
|
|
|
{{ else }}
|
|
|
|
<li>
|
|
|
|
No posts yet
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ if .Data.Singular }}
|
|
|
|
{{else}}
|
|
|
|
<small>
|
|
|
|
<div>
|
|
|
|
{{ range .Site.Taxonomies.tags }}
|
|
|
|
<a href="{{ .Page.Permalink }}">#{{ .Page.Title }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</small>
|
|
|
|
{{ end }}
|
|
|
|
</content>
|
|
|
|
{{ end }}
|