mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 03:16:30 +01:00
18 lines
445 B
HTML
18 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 }}
|