hugo-theme-hello-friend/layouts/partials/footer.html

28 lines
959 B
HTML
Raw Normal View History

2018-07-20 19:14:22 +02:00
<footer class="footer">
<div class="footer__inner">
2019-01-29 11:11:48 +01:00
{{ if $.Site.Copyright }}
<div class="copyright copyright--user">{{ $.Site.Copyright | safeHTML }}</div>
{{ else }}
2018-07-20 19:14:22 +02:00
{{ partial "logo.html" . }}
<div class="copyright">
<span
>© {{ now.Year }} Powered by
<a href="https://gohugo.io" target="_blank" rel="noopener">Hugo</a></span
>
<span
>Theme created by
<a href="https://twitter.com/panr" target="_blank" rel="noopener">panr</a></span
>
2018-07-20 19:14:22 +02:00
</div>
{{ end }}
2018-07-20 19:14:22 +02:00
</div>
</footer>
2022-10-23 11:16:46 +02:00
{{ $menu := resources.Get "js/menu.js" | js.Build }}
{{ $prism := resources.Get "js/prism.js" | js.Build }}
{{ $theme := resources.Get "js/theme.js" | js.Build }}
{{ $bundle := slice $menu $prism $theme | resources.Concat "bundle.js" | resources.Minify }}
<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>
{{- partial "extended_footer.html" . }}