Hugo Bilberry First commit to gitea@cowbay.org
This commit is contained in:
14
themes/bilberry-hugo-theme/layouts/_default/list.html
Normal file
14
themes/bilberry-hugo-theme/layouts/_default/list.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{{ define "main" }}
|
||||
{{ $paginator := .Paginate (where .Data.Pages "Type" "ne" "page") (index .Site.Params "paginate" | default 7) }}
|
||||
{{ range where .Paginator.Pages "Type" "ne" "page" }}
|
||||
<div class="article-wrapper u-cf">
|
||||
{{ if or (fileExists (print "layouts/partials/content-type/" .Type ".html") ) (fileExists (print "themes/bilberry-hugo-theme/layouts/partials/content-type/" .Type ".html")) }}
|
||||
{{ partial (print "content-type/" .Type) . }}
|
||||
{{ else }}
|
||||
{{ partial "content-type/article" . }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
{{ partial "paginator" . }}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user