website/layouts/partials/head_extended.html

16 lines
581 B
HTML
Raw Normal View History

2022-11-22 15:08:29 +00:00
{{- /* Here's where the customized version should be. */ -}}
{{ $highlighter := resources.Get "css/rouge.scss" | toCSS }}
{{- if hugo.IsProduction }}
{{ $highlighter = $highlighter | resources.Minify | resources.Fingerprint }}
{{ end }}
2023-05-03 07:39:51 +00:00
<link rel="stylesheet" href="{{ $highlighter.RelPermalink }}"/>
2022-11-22 23:22:30 +00:00
2022-11-22 15:08:29 +00:00
{{- /* medium-zoom */ -}}
2023-11-16 03:07:28 +00:00
<script defer src="https://cdn.jsdelivr.net/npm/medium-zoom@1.0.8/dist/medium-zoom.min.js"></script>
<script>
window.addEventListener('load', () => {
mediumZoom('article .imageblock img', { 'background': 'rgba(0, 0, 0, 0.75)' })
})
</script>
2022-11-22 15:08:29 +00:00