mirror of
https://github.com/Vimux/Binario.git
synced 2024-11-11 01:38:28 +00:00
Add footer menu
This commit is contained in:
parent
4ef9ef2046
commit
44ee910e2b
4 changed files with 12 additions and 3 deletions
|
@ -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
|
||||
---
|
||||
```
|
||||
|
||||
|
|
|
@ -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>
|
7
layouts/partials/footer_menu.html
Normal file
7
layouts/partials/footer_menu.html
Normal 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 }}
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue