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

32 lines
1017 B
HTML
Raw Normal View History

2022-10-26 23:12:29 +02:00
{{ define "main" }}
<section class="pa3 pa4-ns nested-copy-line-height">
2022-10-26 23:12:29 +02:00
<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"
2022-12-29 20:47:04 +01:00
class="br-pill f6 link dim pa3 mb2 dib white bg-dark-gray pointer">
2022-11-16 22:47:33 +01:00
{{ 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"
2022-12-29 20:47:04 +01:00
class="br-pill f6 link dim pa3 mb2 dib white bg-dark-gray pointer"
2022-11-16 22:47:33 +01:00
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">
{{ range .Pages }}
{{ .Render "summary-with-image" }}
2022-11-11 10:04:57 +01:00
{{ end }}
2022-10-26 23:12:29 +02:00
</section>
</section>
2022-10-26 23:12:29 +02:00
{{ end }}