Add cloud.html

This commit is contained in:
Will Faught
2023-03-19 22:27:56 -07:00
parent 5d0c865ace
commit 05e84c46d5
5 changed files with 30 additions and 16 deletions

View File

@@ -2,20 +2,5 @@
{{ $page := . }}
{{ partial "paige/article.html" $page }}
{{ if or (eq $page.RelPermalink "/categories/") (eq $page.RelPermalink "/tags/") }}
{{ if $page.Pages }}
<div id="paige-pages">
<ul class="list-inline text-center">
{{ range (sort $page.Pages "Title") }}
<li class="list-inline-item">
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
</li>
{{ end }}
</ul>
</div>
{{ end }}
{{ else }}
{{ partial "paige/pages.html" $page }}
{{ end }}
{{ partial "paige/pages.html" $page }}
{{ end }}