mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-29 11:42:48 +01:00
17 lines
532 B
HTML
17 lines
532 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" }}
|
|
{{ $date := . }}
|
|
{{ with $.Page.Scratch.Get "countdownMap" }}
|
|
{{ $.Page.Scratch.Set "countdownMap" (dict $id $date | merge .) }}
|
|
{{ else }}
|
|
{{ $.Page.Scratch.Set "countdownMap" (dict $id $date) }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|