website/layouts/partials/head_extended.html

12 lines
565 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" | resources.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 */ -}}
2022-11-23 12:29:08 +00:00
<script defer src="https://cdn.jsdelivr.net/npm/medium-zoom@1.0.7/dist/medium-zoom.min.js"></script>
2022-11-22 15:08:29 +00:00
<script>window.addEventListener('load', () => mediumZoom('article img', { 'background': 'rgba(0, 0, 0, 0.75)' }))</script>