LoveIt/layouts/shortcodes/countdown.html

16 lines
411 B
HTML
Raw Normal View History

2019-08-08 05:01:18 +08: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 21:25:13 +08:00
var countdownMap = window.countdownMap || {};
2019-08-08 05:01:18 +08:00
countdownMap["{{ $id }}"] = {{ . }};
</script>
{{ end }}
{{ end }}