diff --git a/site/layouts/incidents/single.html b/site/layouts/incidents/single.html index 51619ce..fc3d6cd 100644 --- a/site/layouts/incidents/single.html +++ b/site/layouts/incidents/single.html @@ -1,4 +1,5 @@ {{ partial "header" . }} {{ partial "incident" . }} - + +{{ partial "footer" . }} diff --git a/site/layouts/partials/footer.html b/site/layouts/partials/footer.html index ed5500d..9e14e01 100644 --- a/site/layouts/partials/footer.html +++ b/site/layouts/partials/footer.html @@ -1,5 +1,10 @@
diff --git a/site/layouts/section/incidents.html b/site/layouts/section/incidents.html index 7f0471f..8818a63 100644 --- a/site/layouts/section/incidents.html +++ b/site/layouts/section/incidents.html @@ -14,3 +14,5 @@ {{ partial "paginator" . }} + +{{ partial "footer" . }} diff --git a/src/css/main.css b/src/css/main.css index 7b66bab..d401603 100644 --- a/src/css/main.css +++ b/src/css/main.css @@ -17,7 +17,6 @@ a:active { text-decoration: underline; } - .gangsta-wrap { max-width: 800px; margin: auto; @@ -274,17 +273,23 @@ a:active { border-top: 2px solid #F7F7F8; } -.footer a { - display: inline-block; +.footer p { width: 100%; font-size: 14px; + text-align: left; +} + +.footer a { color: #202020; opacity: 0.3; transition: all 0.3s ease; - text-align: left; } .footer a:hover { color: #3A71B0; opacity: 1; } + +.footer p { + display: inline-block; +}