init
This commit is contained in:
25
themes/hugo-agency-theme/layouts/partials/footer.html
Normal file
25
themes/hugo-agency-theme/layouts/partials/footer.html
Normal file
@@ -0,0 +1,25 @@
|
||||
{{ "<!-- Footer section -->" | safeHTML }}
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<span class="copyright">{{ with .Site.Params.footer.copyright }}{{ . | markdownify }}{{ end }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<ul class="list-inline social-buttons">
|
||||
{{ range .Site.Params.footer.social }}
|
||||
<li><a href="{{ .link }}" title="{{ .title }}" target="_blank"><i class="{{ .icon }}"></i></a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<ul class="list-inline quicklinks">
|
||||
{{ $baseUrl := .Site.BaseURL }}
|
||||
{{ range .Site.Params.footer.quicklinks }}
|
||||
<li><a href="{{ $baseUrl }}{{ .link }}" target="_blank">{{ .text | markdownify }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
Reference in New Issue
Block a user