25 lines
971 B
HTML
25 lines
971 B
HTML
<footer class="footer">
|
|
<div class="footer__inner">
|
|
{{ if $.Site.Params.Copyright }}
|
|
<div class="copyright copyright--user">
|
|
<span>{{ $.Site.Params.Copyright | safeHTML }}</span>
|
|
{{ else }}
|
|
<div class="copyright">
|
|
<span>© {{ now.Year }} Basé sur <a href="https://gohugo.io">Hugo</a></span>
|
|
{{ end }}
|
|
<span>:: <a href="https://github.com/mirus-ua/hugo-theme-re-terminal" target="_blank">Theme</a> par <a href="https://github.com/mirus-ua" target="_blank">Mirus</a> modifié par <a href="https://jean-cloud.net">Jean-Cloud</a></span>
|
|
<span>:: Hébergé par <a href="https://jean-cloud.net">Jean-Cloud</a></div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
{{ $menu := resources.Get "js/menu.js" | js.Build }}
|
|
|
|
{{ $bundle := slice $menu | resources.Concat "bundle.js" | resources.Minify }}
|
|
|
|
<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>
|
|
|
|
|
|
<!-- Extended footer section-->
|
|
{{ partial "extended_footer.html" . }}
|