You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
870 B
HTML
39 lines
870 B
HTML
{{ 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 }}
|
|
<ul class="blog-posts">
|
|
{{ range .Pages }}
|
|
<li>
|
|
<span>
|
|
<i>
|
|
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
|
|
{{ .Date.Format (default "02 Jan, 2006" .Site.Params.dateFormat) }}
|
|
</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 }}
|