jlelse
/
Indieroad
Archived
1
Fork 0
This repository has been archived on 2020-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Indieroad/layouts/_default/list.html

21 lines
459 B
HTML
Raw Normal View History

2019-09-03 15:50:00 +00:00
{{ define "main" }}
<main class="main list">
{{- with .Title }}
<header class="main-header">
<h1 class="main-title">{{ . }}</h1>
</header>
{{- end }}
{{- with .Content }}
<div class="main-content">
{{ . }}
</div>
{{- end }}
2019-11-02 21:23:37 +00:00
{{- if ne (.Param "hideList") true }}
2019-09-03 15:50:00 +00:00
{{- range .Paginator.Pages }}
{{- .Render "summary" }}
{{- end }}
2019-11-02 21:23:37 +00:00
{{- end }}
2020-02-16 20:56:58 +00:00
{{ partialCached "authorbox" . (.Param "authorbox") }}
2019-09-03 15:50:00 +00:00
</main>
2020-02-16 20:56:58 +00:00
{{ partial "pagination" . }}
2019-09-03 15:50:00 +00:00
{{ end }}