acoeur/themes/acoeur/layouts/_default/pages.html

46 lines
1.4 KiB
HTML
Raw Normal View History

2022-10-26 23:12:29 +02:00
{{ define "main" }}
<article class="pa3 pa4-ns nested-copy-line-height">
<aside id="actions" class="w-30-l mt4-l fr tc">
2022-11-13 16:50:48 +01:00
{{ if .Parent.IsHome }}
2022-11-16 22:47:33 +01:00
<button id="create"
class="br-pill f6 link dim br3 ph3 pv2 mb2 dib white bg-dark-gray pointer">
{{ T (print .Section ".create") }}
</button>
2022-11-13 16:50:48 +01:00
{{ else if .Parent.Parent.IsHome }}
2022-11-16 22:47:33 +01:00
<button id="delete"
class="br-pill f6 link dim br3 ph3 pv2 mb2 dib white bg-dark-gray pointer author-only"
data-confirm="{{ T (print .Section ".delete") }}?">
{{ T (print .Section ".delete") }}
</button>
2022-10-26 23:12:29 +02:00
{{ end }}
</aside>
{{ with .Content }}
2022-11-07 22:30:43 +01:00
<section id="content"
class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy {{ $.Param "text_color" | default "mid-gray" }}">
2022-10-26 23:12:29 +02:00
{{- . -}}
</section>
{{ end }}
<section class="flex-ns flex-wrap justify-around">
{{ if .Parent.IsHome }}
2022-10-26 23:12:29 +02:00
{{ range .Sections }}
<div class="relative w-100 w-30-l mb4 bg-white">
{{ .Render "summary-with-image" }}
</div>
{{ end }}
{{ else }}
{{ range (.Paginate .RegularPagesRecursive).Pages }}
<div class="relative w-100 mb4 bg-white">
{{ .Render "summary-with-image" }}
</div>
{{ end }}
2022-11-13 16:50:48 +01:00
{{- template "_internal/pagination.html" . -}}
2022-11-11 10:04:57 +01:00
{{ end }}
2022-10-26 23:12:29 +02:00
</section>
</article>
{{ end }}