blog.gabrielsimmer.com/themes/gs/layouts/index.html

26 lines
587 B
HTML
Raw Normal View History

{{ 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 }}