summaryrefslogblamecommitdiffstats
path: root/themes/Brine/layouts/_default/dreams.html
blob: dc601781072bf6742699ab0c437f4b787eced67f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                                                  
{{ define "main" }}	<h1>{{ .Title }}</h1>
	{{ .Content }}
	<details>
		<summary>Dated</summary>
		<ul>{{ range sort .Site.Taxonomies.dream.dated ".Page.RelPermalink" "desc" }}
			<li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
		</ul>
	</details>
	<details>
		<summary>Archive</summary>
		<ul>{{ range sort .Site.Taxonomies.dream.undated ".Page.RelPermalink" "desc" }}
			<li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
		</ul>
	</details>{{ end }}