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

24 lines
874 B
HTML
Raw Normal View History

2022-06-21 13:50:51 +00: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">
<span>© {{ now.Year }} Powered by <a href="http://gohugo.io">Hugo</a></span>
{{ end }}
2023-01-02 22:19:52 +00:00
<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>
2022-06-21 13:50:51 +00:00
</div>
</div>
</footer>
{{ $menu := resources.Get "js/menu.js" | js.Build }}
{{ $prism := resources.Get "js/prism.js" | js.Build }}
2022-11-07 23:34:01 +00:00
{{ $bundle := slice $menu $prism | resources.Concat "bundle.js" | resources.Minify }}
2022-06-21 13:50:51 +00:00
2022-06-21 15:15:11 +00:00
<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>
2022-06-21 13:50:51 +00:00
<!-- Extended footer section-->
{{ partial "extended_footer.html" . }}