Clean up directory structure of partials and .Render templates

This commit is contained in:
2021-11-22 01:57:35 -06:00
parent 8067173f0c
commit f77c61b561
25 changed files with 28 additions and 28 deletions

View File

@ -7,7 +7,7 @@
<div class="page-list">
<ul>
{{ range .Paginator.Pages }}
<li>{{ .Render "author-summary" }}</li>
<li>{{ .Render "summary/author" }}</li>
{{ end }}
</ul>
</div>

View File

@ -5,14 +5,14 @@
{{ partial "rss-link.html" . }}
</h1>
{{ partial "author-metadata.html" . }}
{{ partial "post-metadata/author.html" . }}
{{ .Content }}
<div class="page-list">
<ul>
{{ range .Paginator.Pages }}
<li>{{ .Render "summary" }}</li>
<li>{{ .Render "summary/post" }}</li>
{{ else }}
<div>
{{ i18n "no_posts" }}