2021-11-22 01:36:29 -06:00
|
|
|
{{ define "main" }}
|
2022-07-20 21:48:55 -05:00
|
|
|
<div class="author-name">
|
|
|
|
<h1>
|
|
|
|
{{ partial "icon.html" "user-circle" }}
|
|
|
|
{{ .Title | markdownify }}
|
|
|
|
{{ partial "rss-link.html" . }}
|
|
|
|
</h1>
|
|
|
|
</div>
|
2021-11-22 01:36:29 -06:00
|
|
|
|
2021-11-22 01:57:35 -06:00
|
|
|
{{ partial "post-metadata/author.html" . }}
|
2021-11-22 01:36:29 -06:00
|
|
|
|
2022-05-06 21:14:42 -05:00
|
|
|
{{ with .Content }}
|
|
|
|
{{ . }}
|
|
|
|
{{ end }}
|
2021-11-22 01:36:29 -06:00
|
|
|
|
2022-05-06 21:14:42 -05:00
|
|
|
{{ partial "page-list.html" .Paginator.Pages }}
|
2021-11-22 01:36:29 -06:00
|
|
|
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
{{ end }}
|