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

23 lines
618 B
HTML
Raw Normal View History

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