2022-02-06 12:51:54 +00:00
|
|
|
{{- $assetBusting := not .Site.Params.disableAssetsBusting }}
|
2022-07-15 12:07:48 +00:00
|
|
|
{{ "<!-- https://github.com/filamentgroup/loadCSS/blob/master/README.md#how-to-use -->" | safeHTML }}
|
2022-07-07 22:10:17 +00:00
|
|
|
<link href="{{"css/fontawesome-all.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" media="print" onload="this.media='all';this.onload=null;">
|
|
|
|
<link href="{{"css/featherlight.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" media="print" onload="this.media='all';this.onload=null;">
|
|
|
|
<link href="{{"css/auto-complete.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" media="print" onload="this.media='all';this.onload=null;">
|
2022-07-07 22:29:35 +00:00
|
|
|
<noscript>
|
|
|
|
<link href="{{"css/fontawesome-all.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
|
|
|
<link href="{{"css/featherlight.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
|
|
|
<link href="{{"css/auto-complete.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
|
|
|
</noscript>
|
2022-02-06 12:51:54 +00:00
|
|
|
<link href="{{"css/perfect-scrollbar.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
2022-07-07 22:10:17 +00:00
|
|
|
<link href="{{"css/nucleus.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
|
|
|
<link href="{{"css/fonts.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" media="print" onload="this.media='all';this.onload=null;">
|
2022-02-06 12:51:54 +00:00
|
|
|
<link href="{{"css/theme.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
2022-02-21 22:11:04 +00:00
|
|
|
{{- $themevariants := slice | append (.Site.Params.themeVariant | default "relearn-light" ) }}
|
2022-02-13 00:53:23 +00:00
|
|
|
{{- with index $themevariants 0 }}
|
2022-03-28 09:56:51 +00:00
|
|
|
<link href="{{(printf "css/theme-%s.css" .) | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" id="variant-style">
|
2022-02-06 12:51:54 +00:00
|
|
|
{{- end }}
|
2022-05-28 20:58:55 +00:00
|
|
|
<link href="{{"css/ie.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
2022-02-20 23:35:50 +00:00
|
|
|
<link href="{{"css/variant.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
2022-07-09 16:42:20 +00:00
|
|
|
<link href="{{"css/print.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" media="print">
|
2022-07-15 12:07:48 +00:00
|
|
|
{{- if (fileExists (printf "/static/css/format-%s.css" (partial "output-format.hugo" .))) }}
|
|
|
|
<link href="{{(printf "css/format-%s.css" (partial "output-format.hugo" .)) | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
2022-07-09 16:42:20 +00:00
|
|
|
{{- end }}
|
2022-02-20 22:58:16 +00:00
|
|
|
<script src="{{"js/variant.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
2022-02-13 01:11:27 +00:00
|
|
|
<script>
|
2022-03-07 16:22:20 +00:00
|
|
|
{{ "// hack to let hugo tell us how to get to the root when using relativeURLs, it needs to be called *url= for it to do its magic:" | safeJS }}
|
|
|
|
{{ "// https://github.com/gohugoio/hugo/blob/145b3fcce35fbac25c7033c91c1b7ae6d1179da8/transform/urlreplacers/absurlreplacer.go#L72" | safeJS }}
|
|
|
|
var index_url={{ "index.json" | relLangURL }};
|
|
|
|
var root_url="/";
|
|
|
|
var baseUri=root_url.replace(/\/$/, '');
|
|
|
|
{{ "// translations" | safeJS }}
|
|
|
|
window.T_Copy_to_clipboard = '{{ T "Copy-to-clipboard" | safeJS }}';
|
|
|
|
window.T_Copied_to_clipboard = '{{ T "Copied-to-clipboard" | safeJS }}';
|
|
|
|
window.T_Copy_link_to_clipboard = '{{ T "Copy-link-to-clipboard" | safeJS }}';
|
|
|
|
window.T_Link_copied_to_clipboard = '{{ T "Link-copied-to-clipboard" | safeJS }}';
|
|
|
|
{{ "// some further base stuff" | safeJS }}
|
2022-03-07 17:25:33 +00:00
|
|
|
var baseUriFull='{{ trim .Site.BaseURL "/" | safeJS }}/';
|
2022-02-20 22:58:16 +00:00
|
|
|
{{- $quotedthemevariants := slice }}
|
|
|
|
{{- range $themevariants }}
|
2022-03-07 17:25:33 +00:00
|
|
|
{{- $quotedthemevariants = $quotedthemevariants | append (printf "'%s'" .) }}
|
2022-02-20 22:58:16 +00:00
|
|
|
{{- end }}
|
2022-07-09 17:46:39 +00:00
|
|
|
window.variants && variants.init( [ {{ delimit $quotedthemevariants ", " | safeJS }} ] );
|
2022-02-13 01:11:27 +00:00
|
|
|
</script>
|
2022-07-07 22:10:17 +00:00
|
|
|
<script src="{{"js/jquery.min.js"| relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" defer></script>
|