Lots of changes

This commit is contained in:
Joseph Hutchinson
2018-03-16 15:12:19 -04:00
parent 6d6a70e705
commit 7a09a9d3e2
3 changed files with 58 additions and 17 deletions

View File

@@ -1,13 +1,17 @@
<!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 style="background-color: #f3f3f3;">
<div class="content-container">
<main class="card-container">
{{.Content}}
<section class="article-list card-columns">
{{ range $index, $page := .Paginator.Pages }}
{{ .Render "li" }}
{{ end }}
</section>
</main>
</div>
</body>
{{ partial "scripts.html" . }}
</html>