blob: 9f55b99eab56de910defdd6628ffb70dc6a29622 (
plain) (
tree)
|
|
{{ define "main" }} <h1>{{ .Title }}</h1>
{{ .Content }}
<details>
<summary>Dated</summary>
<ul>{{ range .Site.Taxonomies.dream.dated}}
<li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
</ul>
</details>
<details>
<summary>Archive</summary>
<ul>{{ range .Site.Taxonomies.dream.undated}}
<li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
</ul>
</details>{{ end }}
|