migrating from old theme name

This commit is contained in:
2020-05-22 00:23:23 +01:00
parent 3e761a81bc
commit fc10ac84c4
120 changed files with 9019 additions and 16 deletions

View File

@@ -0,0 +1,24 @@
{{ define "main" }}
<main class="list container py-6">
{{- if or .Title .Content -}}
<div class="row py-3">
<div class="col">
{{ with .Title }}<h3 class="display-4">{{ . }}</h3>{{ end }}
{{- with .Content -}}
<div class="content">
{{ . }}
</div>
{{- end -}}
</div>
</div>
{{- end -}}
<div class="row row-cols-1 row-cols-lg-3">
{{ range .Pages }}
<div class="col mb-3">
{{ .Render "card" }}
</div>
{{ end }}
</div>
</main>
{{ end }}