2023-08-20 21:31:53 +00:00
{{- partial "lang.html" . -}}
< p class = "copyright" > {{ .Site.Copyright | markdownify }}< / p >
2023-11-06 21:50:42 +00:00
< p class = "powered_by" > {"powered_by": [{{- range $i, $link := .Site.Params.powerLinks }}{{ if $i }}, {{ end }}" < a target = "_blank" href = "{{ $link.url }}" > {{ $link.title }}< / a > " {{ end }}]}
2023-12-11 15:29:58 +00:00
< br > < < a target = "_blank" href = "https://github.com/jbowdre/runtimeterror" > view source< / a > > < / 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 >
< script > a d d B a c k T o T o p ( {
diameter: 56,
backgroundColor: '#383838',
textColor: '#c45a5a'
})< / script >
<!-- 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 }}