17 lines
701 B
HTML
17 lines
701 B
HTML
<footer class="footer">
|
|
<div class="footer__inner">
|
|
<span><a href="{{ .Site.Params.imprintPage}}">Imprint</a> :: Powered by <a href="https://gohugo.io">Hugo</a> :: <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 }}
|
|
{{ $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" . }}
|