mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 19:06:16 +01:00
142 lines
No EOL
6 KiB
HTML
142 lines
No EOL
6 KiB
HTML
<!-- jQuery https://github.com/jquery/jquery -->
|
|
{{ $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.min.js" | resources.Minify }}
|
|
{{ $jquery = printf "<script src=\"%s\"></script>" $res.RelPermalink }}
|
|
{{ end }}
|
|
<!-- lazysizes https://github.com/aFarkas/lazysizes -->
|
|
{{ $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 }}
|
|
<!-- KaTeX https://github.com/KaTeX/KaTeX -->
|
|
{{ $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 src=\"%s\"></script>" $res.RelPermalink }}
|
|
{{ end }}
|
|
{{ $katex := delimit (slice $katex_css $katex_js $katex_auto_render_js) "" }}
|
|
<!-- mermaid https://github.com/knsv/mermaid -->
|
|
{{ $diagram := "" }}
|
|
{{ if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.mermaid_js }}
|
|
{{ $diagram = .Site.Params.cdn.mermaid_js }}
|
|
{{ else }}
|
|
{{ $res := resources.Get "js/lib/mermaid/mermaid.min.js" | resources.Minify }}
|
|
{{ $diagram = printf "<script src=\"%s\"></script>" $res.RelPermalink }}
|
|
{{ end }}
|
|
{{ $diagram = delimit (slice $diagram "<script>mermaid.initialize({startOnLoad: true, theme: null,});</script>") "" }}
|
|
<!-- ECharts https://github.com/apache/incubator-echarts -->
|
|
{{ $echarts := "" }}
|
|
{{ if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.echarts_js }}
|
|
{{ $echarts = .Site.Params.cdn.echarts_js }}
|
|
{{ else }}
|
|
{{ $res := resources.Get "js/lib/echarts/echarts.min.js" | resources.Minify }}
|
|
{{ $echarts = printf "<script src=\"%s\"></script>" $res.RelPermalink }}
|
|
{{ end }}
|
|
<!-- TypeIt https://github.com/alexmacarthur/typeit -->
|
|
{{ $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 }}
|
|
<!-- jQuery.countdown https://github.com/hilios/jQuery.countdown -->
|
|
{{ $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 }}
|
|
<!-- MetingJS https://github.com/metowolf/MetingJS -->
|
|
{{ $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 }}
|
|
{{ $meting_js := "" }}
|
|
{{ if eq (getenv "HUGO_ENV") "production" | and .Site.Params.cdn.meting_js }}
|
|
{{ $meting_js = .Site.Params.cdn.meting_js }}
|
|
{{ else }}
|
|
{{ $res := resources.Get "js/lib/meting/Meting.min.js" | resources.Minify }}
|
|
{{ $meting_js = printf "<script src=\"%s\"></script>" $res.RelPermalink }}
|
|
{{ end }}
|
|
{{ $metingjs := delimit (slice $aplayer_css $aplayer_js $meting_js) "" }}
|
|
|
|
{{ $jquery | safeHTML }}
|
|
{{ $lazysizes | safeHTML }}
|
|
|
|
{{ if .IsPage }}
|
|
{{ if .Scratch.Get "diagram" }}
|
|
{{ $diagram | safeHTML }}
|
|
{{ end }}
|
|
|
|
{{ with .Scratch.Get "echartsMap" }}
|
|
{{ $echarts | safeHTML }}
|
|
{{ $echartsMap := . }}
|
|
<script>var echartsMap = {
|
|
{{ range $key, $var := $echartsMap }}
|
|
{{ $key }}: {{ $var | safeJS }},
|
|
{{ end }}
|
|
};var echartsArr=[];</script>
|
|
{{ end }}
|
|
|
|
{{ if or .Params.math .Site.Params.math }}
|
|
{{ $katex | safeHTML }}
|
|
{{ end }}
|
|
|
|
{{ if .Scratch.Get "music" }}
|
|
{{ $metingjs | safeHTML }}
|
|
{{ end }}
|
|
|
|
{{ with .Scratch.Get "countdownMap" }}
|
|
{{ $countdown | safeHTML }}
|
|
<script>var countdownMap = {{ . | jsonify | safeJS }};</script>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ $typeitMap := .Scratch.Get "typeitMap" }}
|
|
{{ if $typeitMap }}
|
|
{{ $typeit | safeHTML }}
|
|
{{ $typeitArr := slice }}
|
|
{{ range $key, $val := $typeitMap }}
|
|
{{ $typeitArr = $typeitArr | append (slice $val) }}
|
|
{{ end }}
|
|
<script>var typeitArr = {{ $typeitArr | jsonify | safeJS }};</script>
|
|
{{ end }}
|
|
|
|
{{ $res := resources.Get "/js/blog.js" | resources.Minify }}
|
|
<script src="{{ $res.RelPermalink }}"></script>
|
|
|
|
{{ template "_internal/google_analytics_async.html" . }} |