Tweak formatting of the copyright footer

This commit is contained in:
BBaoVanC 2021-10-18 17:29:39 -05:00
parent 1c6d88333f
commit c4e7258d69
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
2 changed files with 12 additions and 3 deletions

View File

@ -42,7 +42,7 @@
/* Header formatting (website title and article section headers) */ /* Header formatting (website title and article section headers) */
.top { .top {
margin-left: 20px; margin: 20px;
} }
.header a, .section-header a { .header a, .section-header a {
@ -62,7 +62,11 @@
} }
.content, footer { .content, footer {
padding: 20px; margin: 20px;
}
footer {
text-align: center;
} }

View File

@ -17,7 +17,12 @@
{{ with .Site.Copyright }} {{ with .Site.Copyright }}
<footer> <footer>
<hr> <hr>
<small>
&copy;
{{ now.Format "2006" }}
{{ $.Site.Author.name }}
{{ . | safeHTML }} {{ . | safeHTML }}
</small>
</footer> </footer>
{{ end }} {{ end }}
</body> </body>