2021-11-22 01:36:29 -06:00
|
|
|
{{ define "main" }}
|
|
|
|
<h1>
|
|
|
|
{{ partial "icon.html" "user-circle" }}
|
|
|
|
{{ .Title | markdownify }}
|
|
|
|
</h1>
|
|
|
|
|
2023-01-22 16:43:09 -06:00
|
|
|
{{ with .Content }}
|
|
|
|
{{ . }}
|
|
|
|
{{ end }}
|
|
|
|
|
2021-11-22 01:36:29 -06:00
|
|
|
<div class="page-list">
|
2021-11-25 23:34:56 -06:00
|
|
|
{{ with .Paginator.Pages }}
|
2022-05-21 23:20:22 -05:00
|
|
|
{{ range . }}
|
2023-03-24 08:49:02 -05:00
|
|
|
<article class="page">
|
2023-02-28 18:24:19 -06:00
|
|
|
{{ .Render "summary" }}
|
2022-05-21 23:20:22 -05:00
|
|
|
</article>
|
|
|
|
{{ end }}
|
2021-11-25 23:34:56 -06:00
|
|
|
{{ else }}
|
|
|
|
<div>
|
|
|
|
{{ i18n "no_posts" }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2021-11-22 01:36:29 -06:00
|
|
|
</div>
|
|
|
|
{{ end }}
|