blob: d153a197a72f494b5b4a82eafe53918edb1b6846 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ define "main" }}
<h1>{{ .Title }}</h1>
<p>Explore tags:
{{- $tagsLen := len .Site.Taxonomies.blog_tags }}
{{ range $i, $term := .Site.Taxonomies.blog_tags.ByCount }}{{ if $i }},{{ end }} <a href="{{ .Page.Permalink }}">{{ $term.Name }}</a> ({{ $term.Count }}){{ end }}</p>
{{ .Content }}
<ul>
{{ range.Pages -}}
<li>
{{ .Date.Format "2006, Jan 2" }} – <a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- end }}
</ul>
{{ end }}
|