This commit is contained in:
zoe 2022-04-09 18:00:33 +02:00
parent 572bc88b45
commit 8d93639193
13 changed files with 231 additions and 1 deletions

View file

@ -0,0 +1,19 @@
{{ define "main" }}
<main>
<article>
<header>
<h1>List - {{.Title}}</h1>
</header>
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
{{.Content}}
</article>
<ul>
<!-- Ranges through content/posts/*.md -->
{{ range .Pages }}
<li>
<a href="{{.Permalink}}">{{.Title}}</a>
</li>
{{ end }}
</ul>
</main>
{{ end }}