
* revamp code highlighting * replace standard Fira Code with a variable version * change buttons arrows * redesign code blocks * make terminal logo more prominent * separate terminal theme styles from terminal.css Terminal.css styles only can change the color scheme. * update docs and version * remove USERS.md * fix header pattern * remove old prismjs shortcode * remove old rss template * remove old figure shortcode * [chore] update yarn LOL, I'm still using 1.22.x * [chore] update package-lock.json * fix pagination & boost meta visibility * fix code blocks on mobile & move some parts from CSS to JS
23 lines
868 B
HTML
23 lines
868 B
HTML
<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="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>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
{{ $menu := resources.Get "js/menu.js" | js.Build }}
|
|
{{ $cp := resources.Get "js/code.js" | js.Build }}
|
|
|
|
{{ $bundle := slice $menu $cp | resources.Concat "bundle.js" | resources.Minify }}
|
|
|
|
<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>
|
|
|
|
<!-- Extended footer section-->
|
|
{{ partial "extended_footer.html" . }}
|