bobatheme/layouts/authors/term.html

20 lines
428 B
HTML
Raw Normal View History

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