blog.gabrielsimmer.com/layouts/_default/list.html

21 lines
502 B
HTML
Raw Permalink Normal View History

{{ define "main" }}
<main>
<article>
<header>
2023-04-02 13:54:51 +01:00
<h1>{{.Title}}</h1>
2023-04-02 13:55:54 +01:00
<a href="/index.xml">rss</a>
</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}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a>
</li>
{{ end }}
</ul>
</main>
2023-04-02 13:54:51 +01:00
{{ end }}