sadium/themes/hugo-theme-terminal/layouts/partials/footer.html

24 lines
875 B
HTML
Raw Normal View History

2023-12-13 21:47:26 +03:00
<footer class="footer">
<div class="footer__inner">
{{ if $.Site.Copyright }}
<div class="copyright copyright--user">
<span>{{ $.Site.Copyright | safeHTML }}</span>
{{ else }}
<div class="copyright">
2024-06-17 18:42:33 +03:00
<span>© {{ now.Year }} Powered by <a href="https://gohugo.io">Hugo</a></span>
{{ end }}
<span>:: <a href="https://github.com/panr/hugo-theme-terminal" target="_blank">Theme</a> made by <a href="https://github.com/panr" target="_blank">panr</a></span>
2023-12-13 21:47:26 +03:00
</div>
</div>
</footer>
2024-06-17 18:42:33 +03:00
{{ $menu := resources.Get "js/menu.js" | js.Build }}
2023-12-13 21:47:26 +03:00
{{ $prism := resources.Get "js/prism.js" | js.Build }}
{{ $bundle := slice $menu $prism | resources.Concat "bundle.js" | resources.Minify }}
<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>
<!-- Extended footer section-->
{{ partial "extended_footer.html" . }}