hugo-PaperMod/layouts/partials/footer.html
Aditya Telange 9e88deff8f add js from assets
- highlight
2020-07-20 19:35:06 +05:30

16 lines
578 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

</main>
<footer class="footer">
<span>&copy; {{ now.Year }} <a href="{{ "" | absURL }}">{{ .Site.Title }}</a></span>
<span>&middot;</span>
<span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo</a></span>
<span>&middot;</span>
<span>Theme <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
</footer>
{{ $highlight := resources.Get "highlight.min.js" | minify }}
<script src="{{ $highlight.Permalink }}"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
</body>
</html>