BadDaemons/layouts/posts/list.html

48 lines
1.7 KiB
HTML

{{ define "header" }}
{{ partial "masthead.html" . }}
{{ end }}
{{ define "main" }}
<header>
<h1 itemprop="name">Bad Daemons</h1>
</header>
{{ $scratch := newScratch }}
{{ with (index .Site.Params.layout .Type).featured }}
{{ $scratch.Add "featured" slice }}
{{ range first .limit .items }}
{{ $scratch.Add "featured" (site.GetPage .) }}
{{ end }}
{{ if ge (len ($scratch.Get "featured")) 1 }}
{{ if ne $.Site.Params.hackcss.disabled true }}
{{ with resources.Get "css/conditional/layouts/partials/page-thumbs.css" | minify }}
<style>{{ .Content | safeCSS }}</style>
{{ end }}
{{ end }}
<section>
{{ $index := site.GetPage "section" $.Type }}
{{ $pages := $scratch.Get "featured" }}
{{ $page_count := default 1 (len $pages) }}
{{ if eq $page_count 1 }}
{{ partial "page-summary.html" $index }}
{{ else if gt $page_count 1 }}
<header>
<h1 itemprop="name">
<a href="{{ $index.RelPermalink }}">Featured {{ $index.Title }}</a>
</h1>
<blockquote itemprop="description">{{ $index.Description }}</blockquote>
</header>
{{ partial "page-thumbs.html" (dict "thumbnail_options" .thumbs "page_count" $page_count "limit" .limit "pages" $pages) }}
{{ end }}
</section>
{{ end }}
{{ end }}
{{ range (.Paginate (collections.SymDiff .Pages (default slice ($scratch.Get "featured")))).Pages }}
{{ partial "page-summary.html" . }}
{{ end }}
{{ end }}
{{ define "footer" }}
<p>{{ partial "pagination.html" . }}</p>
<small class="muted">
{{ partial "copyright-notice.html" . }}
</small>
{{ end }}