LoveIt/layouts/partials/scripts.html

178 lines
7.8 KiB
HTML
Raw Normal View History

2019-08-07 13:15:44 +02:00
<!-- jQuery https://github.com/jquery/jquery -->
2020-01-31 15:53:04 +01:00
{{- $jquery := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.jquery_js -}}
{{- $jquery = .Site.Params.cdn.jquery_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/jquery/jquery.slim.min.js" | resources.Minify -}}
{{- $jquery = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
<!-- lazysizes https://github.com/aFarkas/lazysizes -->
2020-01-31 15:53:04 +01:00
{{- $lazysizes := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.lazysizes_js -}}
{{- $lazysizes = .Site.Params.cdn.lazysizes_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/lazysizes/lazysizes.min.js" | resources.Minify -}}
{{- $lazysizes = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
<!-- Smooth Scroll https://github.com/cferdinandi/smooth-scroll -->
2020-01-31 15:53:04 +01:00
{{- $smooth_scroll := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.smooth_scroll_js -}}
{{- $smooth_scroll = .Site.Params.cdn.smooth_scroll_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/smooth-scroll/smooth-scroll.polyfills.min.js" | resources.Minify -}}
{{- $smooth_scroll = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
{{- $smooth_scroll = delimit (slice $smooth_scroll "<script>window.scroll = new SmoothScroll('[data-scroll]', {speed: 300, speedAsDuration: true});</script>") "" -}}
2019-08-07 13:15:44 +02:00
<!-- KaTeX https://github.com/KaTeX/KaTeX -->
2020-01-31 15:53:04 +01:00
{{- $katex_css := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.katex_css -}}
{{- $katex_css = .Site.Params.cdn.katex_css -}}
{{- else -}}
{{- $res := resources.Get "css/lib/katex/katex.min.css" | resources.Minify -}}
{{- $katex_css = printf "<link rel=\"stylesheet\" href=\"%s\">" $res.RelPermalink -}}
{{- end -}}
{{- $katex_js := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.katex_js -}}
{{- $katex_js = .Site.Params.cdn.katex_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/katex/katex.min.js" | resources.Minify -}}
{{- $katex_js = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
{{- $katex_auto_render_js := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.katex_auto_render_js -}}
{{- $katex_auto_render_js = .Site.Params.cdn.katex_auto_render_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/katex/auto-render.min.js" | resources.Minify -}}
{{- $katex_auto_render_js = printf "<script defer src=\"%s\" onload=\"renderMathInElement(document.body);\"></script>" $res.RelPermalink -}}
{{- end -}}
{{- $katex := delimit (slice $katex_css $katex_js $katex_auto_render_js) "" -}}
<!-- mermaid https://github.com/knsv/mermaid -->
2020-01-31 15:53:04 +01:00
{{- $mermaid := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.mermaid_js -}}
{{- $mermaid = .Site.Params.cdn.mermaid_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/mermaid/mermaid.min.js" | resources.Minify -}}
{{- $mermaid = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
{{- $mermaidInit := "<script>mermaid.initialize({startOnLoad: false, theme: null});</script>" -}}
{{- $mermaid = delimit (slice $mermaid $mermaidInit) "" -}}
<!-- ECharts https://github.com/apache/incubator-echarts -->
2020-01-31 15:53:04 +01:00
{{- $echarts_js := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.echarts_js -}}
{{- $echarts_js = .Site.Params.cdn.echarts_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/echarts/echarts.min.js" | resources.Minify -}}
{{- $echarts_js = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
{{- $echarts_macarons_js := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.echarts_macarons_js -}}
{{- $echarts_macarons_js = .Site.Params.cdn.echarts_macarons_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/echarts/macarons.js" | resources.Minify -}}
{{- $echarts_macarons_js = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
{{- $echarts := delimit (slice $echarts_js $echarts_macarons_js) "" -}}
2019-08-07 23:01:18 +02:00
<!-- TypeIt https://github.com/alexmacarthur/typeit -->
2020-01-31 15:53:04 +01:00
{{- $typeit := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.typeit_js -}}
{{- $typeit = .Site.Params.cdn.typeit_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/typeit/typeit.min.js" | resources.Minify -}}
{{- $typeit = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
2019-08-11 19:36:19 +02:00
<!-- jQuery.countdown https://github.com/hilios/jQuery.countdown -->
2020-01-31 15:53:04 +01:00
{{- $countdown := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.jquery_countdown_js -}}
{{- $countdown = .Site.Params.cdn.jquery_countdown_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/jquery-countdown/jquery.countdown.min.js" | resources.Minify -}}
{{- $countdown = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
2019-08-24 13:32:41 +02:00
<!-- APlayer https://github.com/MoePlayer/APlayer -->
2020-01-31 15:53:04 +01:00
{{- $aplayer_css := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.aplayer_css -}}
{{- $aplayer_css = .Site.Params.cdn.aplayer_css -}}
{{- else -}}
{{- $res := resources.Get "css/lib/aplayer/APlayer.min.css" | resources.Minify -}}
{{- $aplayer_css = printf "<link rel=\"stylesheet\" href=\"%s\">" $res.RelPermalink -}}
{{- end -}}
{{- $aplayer_js := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.aplayer_js -}}
{{- $aplayer_js = .Site.Params.cdn.aplayer_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/aplayer/APlayer.min.js" | resources.Minify -}}
{{- $aplayer_js = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
{{- $aplayer := delimit (slice $aplayer_css $aplayer_js) "" -}}
2019-08-24 13:32:41 +02:00
<!-- MetingJS https://github.com/metowolf/MetingJS -->
2020-01-31 15:53:04 +01:00
{{- $meting := "" -}}
{{- if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.meting_js -}}
{{- $meting = .Site.Params.cdn.meting_js -}}
{{- else -}}
{{- $res := resources.Get "js/lib/meting/Meting.min.js" | resources.Minify -}}
{{- $meting = printf "<script src=\"%s\"></script>" $res.RelPermalink -}}
{{- end -}}
2019-08-08 00:05:51 +02:00
2020-01-31 15:53:04 +01:00
{{- $jquery | safeHTML -}}
{{- $lazysizes | safeHTML -}}
{{- $smooth_scroll | safeHTML -}}
2019-08-07 06:31:14 +02:00
2020-01-31 15:53:04 +01:00
{{- if .IsPage -}}
{{/* dev feature */}}
2020-01-31 15:53:04 +01:00
{{- if .Params.dev -}}
{{- with .Scratch.Get "echartsMap" -}}
{{- $echarts | safeHTML -}}
<script>
window.echartsMap = {
{{- range $key, $var := . -}}
{{- $key }}: {{ $var | safeJS -}},
{{- end -}}
};
window.echartsArr=[];
</script>
{{- end -}}
{{- end -}}
{{/* dev feature */}}
2020-01-31 15:53:04 +01:00
{{- with .Scratch.Get "mermaidMap" -}}
{{- $mermaid | safeHTML -}}
<script>
window.mermaidMap = {{ . | jsonify | safeJS }};
</script>
{{- end -}}
2020-01-31 15:53:04 +01:00
{{- if or .Params.math .Site.Params.math -}}
{{- $katex | safeHTML -}}
{{- end -}}
2020-01-31 15:53:04 +01:00
{{- if .Scratch.Get "music" -}}
{{- $aplayer | safeHTML -}}
{{- $meting | safeHTML -}}
{{- end -}}
2020-01-31 15:53:04 +01:00
{{- with .Scratch.Get "countdownMap" -}}
{{- $countdown | safeHTML -}}
<script>
window.countdownMap = {{ . | jsonify | safeJS }};
</script>
{{- end -}}
{{- end -}}
2020-01-31 15:53:04 +01:00
{{- $typeitMap := .Scratch.Get "typeitMap" -}}
{{- if $typeitMap -}}
{{- $typeit | safeHTML -}}
{{- $typeitArr := slice -}}
{{- range $key, $val := $typeitMap -}}
{{- $typeitArr = $typeitArr | append (slice $val) -}}
{{- end -}}
<script>
window.typeitArr = {{ $typeitArr | jsonify | safeJS }};
</script>
{{- end -}}
2020-01-31 15:53:04 +01:00
{{- $res := resources.Get "/js/blog.js" | resources.Minify -}}
2019-08-22 20:54:26 +02:00
<script src="{{ $res.RelPermalink }}"></script>
2019-08-11 19:36:19 +02:00
2020-01-31 15:53:04 +01:00
{{- if not .Site.IsServer -}}
{{- template "_internal/google_analytics_async.html" . -}}
{{- end -}}