blog.gabrielsimmer.com/themes/gs/layouts/index.html
Gabriel Simmer c8ed961e17 Initial commit.
Still some work to do, but basic content is here.
2021-07-06 22:41:24 +01:00

26 lines
587 B
HTML

{{ define "main" }}
<div class="container">
<div class="row">
<div class="twelve columns">
<h1>{{ .Title | default .Site.Title }}</h1>
</div>
</div>
<div class="row">
<div class="eight columns">
{{- .Content -}}
{{ range .Paginator.Pages }}
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
<div class="nested-links f5 lh-copy nested-copy-line-height">
{{ .Summary }}
</div>
{{ end }}
<div class="pagination">
{{- template "_internal/pagination.html" . -}}
</div>
</div>
</div>
</div>
{{ end }}