runtimeterror/layouts/partials/footer.html

18 lines
1 KiB
HTML
Raw Normal View History

2023-08-20 21:31:53 +00:00
<p class="copyright">{{ .Site.Copyright | markdownify }}</p>
<p class="footer_links">{"<a href="/slashes/" title="slashpages">/slashes</a>": [{{- range $i, $link := .Site.Params.slashPages }}{{ if $i }}, {{ end }}&quot;<a href="{{ $link.url }}" title="{{ $link.label }}">{{ $link.title }}</a>&quot;{{ end }}]}
2023-12-11 15:29:58 +00:00
<br>&lt;<a target="_blank" href="https://github.com/jbowdre/runtimeterror">view source</a>&gt;</p>
2023-10-21 21:13:44 +00:00
2024-01-16 20:12:57 +00:00
<!-- Back to Top button via https://github.com/vfeskov/vanilla-back-to-top -->
{{ $jsToTop := resources.Get "js/back-to-top.js" | minify }}
<script src="{{ $jsToTop.RelPermalink }}"></script>
2024-01-22 03:16:15 +00:00
<script>addBackToTop()</script>
2024-01-16 20:12:57 +00:00
<!-- Search index via https://victoria.dev/blog/add-search-to-hugo-static-sites-with-lunr/ -->
2024-01-15 22:02:30 +00:00
{{ partial "search-index.html" .}}
2024-01-16 20:12:57 +00:00
<!-- Code Copy button via https://digitaldrummerj.me/hugo-add-copy-code-snippet-button/ -->
2023-10-21 21:13:44 +00:00
{{ if (findRE "<pre" .Content 1) }}
2023-11-05 01:49:39 +00:00
{{ $jsCopy := resources.Get "js/code-copy-button.js" | minify }}
<script src="{{ $jsCopy.RelPermalink }}"></script>
2023-10-21 21:13:44 +00:00
{{ end }}