footer.html (880B)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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://git.repetitions.de/hugo-theme-terminal" target="_blank">Theme</a> adapted from <a href="https://github.com/panr" target="_blank">panr</a></span>
      </div>
  </div>
</footer>

{{ $menu := resources.Get "js/menu.js" | js.Build }}
{{ $tabbedContainer := resources.Get "js/tabbedContainer.js" }}
{{ $bundle := slice $tabbedContainer $menu | resources.Concat "bundle.js" }}

<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>

<!-- Extended footer section-->
{{ partial "extended_footer.html" . }}