1
0
Fork 0
ejv2.cc/themes/risotto/layouts/blog/list.html

23 lines
598 B
HTML
Raw Permalink Normal View History

2024-08-01 06:21:40 +01:00
{{ define "main" }}
<header class="content__header">
<h1>{{ .Title | markdownify }}</h1>
{{ .Content }}
</header>
{{ range .Pages }}
2024-08-01 06:21:40 +01:00
<article class="post">
<header class="post__header">
<h1><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> -- {{ .Date.Format "2 January 2006" }}</h1>
2024-08-01 06:21:40 +01:00
</header>
<section class="post__summary">
2024-08-07 15:54:11 +01:00
{{ .Description }}
2024-08-01 06:21:40 +01:00
</section>
</article>
{{ end }}
{{ end }}
{{define "aside" }}
{{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
{{ end }}