LoveIt/layouts/shortcodes/countdown.html
2019-08-08 05:01:18 +08:00

17 lines
445 B
HTML

{{ if .Get "id" }}
{{ $id := .Get "id" }}
{{ with .Get "class" }}
<div id={{ $id }} class="{{ . }}"></div>
{{ else }}
<div id={{ $id }}></div>
{{ end }}
{{ $id = printf "#%s" $id }}
{{ with .Get "date" }}
<script>
if (!window.countdownMap) {
var countdownMap = {}
}
countdownMap["{{ $id }}"] = {{ . }};
</script>
{{ end }}
{{ end }}