LoveIt/layouts/shortcodes/countdown.html

18 lines
445 B
HTML
Raw Normal View History

2019-08-07 23:01:18 +02:00
{{ 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 }}