Import theme
This commit is contained in:
parent
51769fa6be
commit
c59ffbfeee
127 changed files with 13611 additions and 1 deletions
35
layouts/partials/footer.html
Normal file
35
layouts/partials/footer.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<footer class="footer footer__{{ .footerClassModifier }}">
|
||||
<ul class="footer__list">
|
||||
<li class="footer__item">
|
||||
©
|
||||
{{ if isset .context.Site.Params "copyright" }}
|
||||
{{ replace .context.Site.Params.copyright "{{ YEAR }}" (now.Format "2006") | markdownify }}
|
||||
{{ else }}
|
||||
{{ .context.Site.Params.author }}
|
||||
{{ now.Format "2006" }}
|
||||
{{ end }}
|
||||
- {{ .context.Site.Params.hosting }}
|
||||
</li>
|
||||
{{ range .context.Site.Menus.footer }}
|
||||
<li class="footer__item">
|
||||
<a
|
||||
class="link"
|
||||
href="{{ .URL }}"
|
||||
{{ if strings.HasPrefix .URL "http" }}
|
||||
target="_blank" rel="noopener noreferrer"
|
||||
{{ end }}
|
||||
title="{{ .Title }}"
|
||||
>
|
||||
{{ .Name }}
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</footer>
|
||||
{{- partial "medium-zoom.html" .context -}}
|
||||
{{- if (hasPrefix .context.Site.Config.Services.GoogleAnalytics.ID "G-") -}}
|
||||
{{- template "_internal/google_analytics.html" .context -}}
|
||||
{{- end -}}
|
||||
{{- if and (hugo.IsProduction) (.context.Site.Params.gtagId) -}}
|
||||
{{ partial "google-analytics-gtag-async.html" .context }}
|
||||
{{- end -}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue