LoveIt/layouts/shortcodes/music.html

13 lines
629 B
HTML
Raw Normal View History

2020-01-31 22:53:04 +08:00
{{- if .IsNamedParams -}}
2020-02-04 01:55:24 +08:00
<meting-js server="{{ .Get "server" }}" type="{{ .Get "type" }}" id="{{ .Get "id" }}" theme="#A9A9B3"
{{- with .Get "autoplay" }} autoplay="{{ . }}"{{ end -}}
{{- with .Get "mini" }} mini="{{ . }}"{{ end -}}
{{- with .Get "fixed" }} fixed="{{ . }}"{{ end -}}
{{- with .Get "list-folded" }} list-folded="{{ . }}"{{ end -}}
{{- with .Get "list-max-height" }} list-max-height="{{ . }}"{{ end -}}
></meting-js>
2020-01-31 22:53:04 +08:00
{{- else -}}
2020-02-04 01:55:24 +08:00
<meting-js server="{{ .Get 0 }}" type="{{ .Get 1 }}" id="{{ .Get 2 }}" theme="#A9A9B3"></meting-js>
2020-02-07 00:10:00 +08:00
{{- end -}}
{{- .Page.Scratch.Set "music" true -}}