Copying layouts from old theme to new

This commit is contained in:
2020-05-31 05:21:00 +01:00
parent 3503ec15d8
commit 9dbf2d80d7
28 changed files with 882 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{{ define "main" }}
<main class="content-page container pt-7 pb-5">
<div class="row">
<div class="col">
<article>
<div class="row justify-content-center">
<ul>
{{ range .Data.Pages }}
{{ $page := . }}
{{ range .Params.name }}
<li><a href="{{ $page.Permalink }}">{{ . }}</a></li>
{{ end }}
{{ end }}
</ul>
</div>
<ul>
{{ range .Site.Taxonomies.tags }}
<li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> {{ .Count }}</li>
{{ end }}
</ul>
</article>
</div>
</div>
</main>
{{ end }}