LoveIt/layouts/shortcodes/countdown.html

16 lines
411 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>
2019-08-09 15:25:13 +02:00
var countdownMap = window.countdownMap || {};
2019-08-07 23:01:18 +02:00
countdownMap["{{ $id }}"] = {{ . }};
</script>
{{ end }}
{{ end }}