Files
aether/layouts/_default/list.html
Joseph Hutchinson 83cccd2e46 Initial commit
2018-03-15 11:53:53 -04:00

13 lines
354 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}" dir="ltr">
{{ partial "head.html" . }}
<body>
{{.Content}}
<section id="content" role="main" class="article-list card-columns">
{{ range $index, $page := .Paginator.Pages }}
{{ .Render "li" }}
{{ end }}
</section>
</body>
{{ partial "scripts.html" . }}
</html>