18 lines
539 B
HTML
18 lines
539 B
HTML
{{ define "main" }}
|
|
<div class="pa3 pa4-ns w-100 w-70-ns center">
|
|
<section class="w-100 mw8">
|
|
{{ $pages := where .Paginator.Pages ".Params.skip" "ne" "true" }}
|
|
{{ range where (where $pages ".Date.Unix" "<" now.Unix) "Section" "ne" "slides" }}
|
|
{{ partial "li.html" . }}
|
|
{{ end }}
|
|
</section>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ define "pagination" }}
|
|
<footer class="w-100 sans-serif" role="contentinfo">
|
|
<nav class="w-third-l pb3 f6 center db" role="navigation">
|
|
{{- template "_internal/pagination.html" . -}}
|
|
</nav>
|
|
</footer>
|
|
{{ end }}
|