mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 19:06:16 +01:00
50 lines
2.6 KiB
HTML
50 lines
2.6 KiB
HTML
{{- $theme := "#448aff" -}}
|
|
{{- if .IsNamedParams -}}
|
|
{{- $theme = .Get "theme" | default $theme -}}
|
|
{{- if .Get "url" -}}
|
|
{{- $url := .Get "url" -}}
|
|
{{- with dict "Path" $url "Resources" .Page.Resources | partial "function/resource.html" -}}
|
|
{{- $url = .RelPermalink -}}
|
|
{{- end -}}
|
|
{{- $cover := .Get "cover" -}}
|
|
{{- with dict "Path" $cover "Resources" .Page.Resources | partial "function/resource.html" -}}
|
|
{{- $cover = .RelPermalink -}}
|
|
{{- end -}}
|
|
<meting-js url="{{ $url }}" name="{{ .Get `name` }}" artist="{{ .Get `artist` }}" cover="{{ $cover }}" theme="{{ $theme }}"
|
|
{{- with .Get "fixed" }} fixed="{{ . }}"{{ end -}}
|
|
{{- with .Get "mini" }} mini="{{ . }}"{{ end -}}
|
|
{{- with .Get "autoplay" }} autoplay="{{ . }}"{{ end -}}
|
|
{{- with .Get "volume" }} volume="{{ . }}"{{ end -}}
|
|
{{- with .Get "mutex" }} mutex="{{ . }}"{{ end -}}
|
|
></meting-js>
|
|
{{- else if .Get "auto" -}}
|
|
<meting-js auto="{{ .Get `auto` }}" theme="{{ $theme }}"
|
|
{{- with .Get "fixed" }} fixed="{{ . }}"{{ end -}}
|
|
{{- with .Get "mini" }} mini="{{ . }}"{{ end -}}
|
|
{{- with .Get "autoplay" }} autoplay="{{ . }}"{{ end -}}
|
|
{{- with .Get "loop" }} loop="{{ . }}"{{ end -}}
|
|
{{- with .Get "order" }} order="{{ . }}"{{ end -}}
|
|
{{- with .Get "volume" }} volume="{{ . }}"{{ end -}}
|
|
{{- with .Get "mutex" }} mutex="{{ . }}"{{ end -}}
|
|
{{- with .Get "list-folded" }} list-folded="{{ . }}"{{ end -}}
|
|
{{- with .Get "list-max-height" }} list-max-height="{{ . }}"{{ end -}}
|
|
></meting-js>
|
|
{{- else -}}
|
|
<meting-js server="{{ .Get `server` }}" type="{{ .Get `type` }}" id="{{ .Get `id` }}" theme="{{ $theme }}"
|
|
{{- with .Get "fixed" }} fixed="{{ . }}"{{ end -}}
|
|
{{- with .Get "mini" }} mini="{{ . }}"{{ end -}}
|
|
{{- with .Get "autoplay" }} autoplay="{{ . }}"{{ end -}}
|
|
{{- with .Get "loop" }} loop="{{ . }}"{{ end -}}
|
|
{{- with .Get "order" }} order="{{ . }}"{{ end -}}
|
|
{{- with .Get "volume" }} volume="{{ . }}"{{ end -}}
|
|
{{- with .Get "mutex" }} mutex="{{ . }}"{{ end -}}
|
|
{{- with .Get "list-folded" }} list-folded="{{ . }}"{{ end -}}
|
|
{{- with .Get "list-max-height" }} list-max-height="{{ . }}"{{ end -}}
|
|
></meting-js>
|
|
{{- end -}}
|
|
{{- else if (.Get 0 | urls.Parse).Host -}}
|
|
<meting-js auto="{{ .Get 0 }}" theme="{{ $theme }}"></meting-js>
|
|
{{- else -}}
|
|
<meting-js server="{{ .Get 0 }}" type="{{ .Get 1 }}" id="{{ .Get 2 }}" theme="{{ $theme }}"></meting-js>
|
|
{{- end -}}
|
|
{{- .Page.Scratch.SetInMap "this" "music" true -}}
|