Add footer menu

This commit is contained in:
vimux 2018-11-27 15:30:08 -05:00
parent 4ef9ef2046
commit 44ee910e2b
No known key found for this signature in database
GPG key ID: 5A34FDC4EE832E34
4 changed files with 12 additions and 3 deletions

View file

@ -170,7 +170,7 @@ categories:
tags:
- "Tag"
- "Another tag"
menu: main # Add page to a main menu
menu: main # Add page to a menu. Options: main, footer
---
```

View file

@ -1,4 +1,5 @@
<footer class="footer">
{{- partial "footer_social.html" . }}
{{- partial "footer_menu.html" . }}
<div class="footer__copyright">© {{ now.Format "2006" }} {{ .Site.Title }}. <span class="footer__copyright-credits">{{ T "footer_credits" | safeHTML }}</span></div>
</footer>

View file

@ -0,0 +1,7 @@
{{- with .Site.Menus.footer }}
<div class="footer__links{{ if $.Site.Params.social }} mt{{ end }}">
{{ range $key, $value := . }}
{{- if ne $key 0 }} • {{ end }}<a class="footer__link" href="{{ $value.URL }}">{{ $value.Name }}</a>
{{- end }}
</div>
{{- end }}

View file

@ -911,6 +911,7 @@ mark {
margin: .3125rem 0 0;
font-size: .8125rem;
color: #888;
text-align: center;
border-top: 2px solid #333;
}
@ -940,8 +941,8 @@ mark {
height: 32px;
}
.footer__copyright {
text-align: center;
.footer__links {
margin-bottom: .5rem;
}
@media screen and (min-width: 480px) {