This commit is contained in:
Madison Scott-Clary
2019-08-11 14:56:41 -07:00
parent 2766e84142
commit 6a1783608e
5 changed files with 15 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<footer>
<p>&copy; Madison Scott-Clary, 2019</p>
<p>&copy; Madison Scott-Clary, 2019 &bull; <a href="/about">About</a></p>
</footer>
</body>
</html>

View File

@ -1,4 +1,4 @@
<body>
<header>
<h1>ally</h1>
<h1><a href="/">ally</a></h1>
</header>

View File

@ -1,5 +1,6 @@
{{ define "main" }}
<main id="main">
{{ .Content }}
{{ $paginator := .Paginate (where .Pages ".Params.date" "!=" nil) 1 }}
{{ range $paginator.Pages.ByWeight }}
{{ .Content }}

View File

@ -83,6 +83,9 @@ h1 {
padding: 0;
margin: 0;
}
h1 a {
border: none;
}
main, footer {
max-width: 960px;
margin: 0 auto;