1
0
Fork 0
ejv2.cc/themes/risotto/layouts/blog/list.html
Ethan Marshall 25ac2d85a9
Allow nested posts in blog directory
Fix the bad way I was doing this before
2025-01-31 03:12:33 +00:00

22 lines
598 B
HTML

{{ define "main" }}
<header class="content__header">
<h1>{{ .Title | markdownify }}</h1>
{{ .Content }}
</header>
{{ range .Pages }}
<article class="post">
<header class="post__header">
<h1><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> -- {{ .Date.Format "2 January 2006" }}</h1>
</header>
<section class="post__summary">
{{ .Description }}
</section>
</article>
{{ end }}
{{ end }}
{{define "aside" }}
{{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
{{ end }}