22 lines
610 B
HTML
22 lines
610 B
HTML
{{ define "extraCss" }}
|
|
{{ $scrollCss := resources.Get "styles/scrolling-header.css" | minify }}
|
|
<link href="{{ $scrollCss.RelPermalink }}" rel="stylesheet" />
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{ partial "scrolling-image-header" . }}
|
|
<section>
|
|
<div>
|
|
{{ block "content" . }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
<h2>Recent activity</h2>
|
|
{{ $featuredPages := where .Site.RegularPages "Params.featured" "eq" true }}
|
|
{{ $pageinator := .Paginate $featuredPages }}
|
|
{{ range $pageinator.Pages }}
|
|
{{ partial "itemcard.html" . }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|