forked from Bunteshaus/bunteshaus.de
22 lines
818 B
HTML
22 lines
818 B
HTML
|
{{ if or .when .price .contact .covid }}
|
||
|
|
||
|
<div id="articlemeta" style="font-size: smaller;">
|
||
|
{{ if .when }}
|
||
|
<div>{{ .when }}</div>
|
||
|
{{ end }}
|
||
|
{{ if .price }}
|
||
|
{{ if eq .price "free" }}
|
||
|
<div>{{ if i18n "freeentry" }}{{ i18n "freeentry" }}{{ else }}{{ "Free Entry" }}{{ end }}</div>
|
||
|
{{ else }}
|
||
|
<div>{{ if i18n "entry" }}{{ i18n "entry" }}{{ else }}{{ "Entry" }}{{ end }}: {{ .price }}</div>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
{{ if .contact }}
|
||
|
<div>{{ if i18n "contact" }}{{ i18n "contact" }}{{ else }}{{ "Contact" }}{{ end }} {{ .contact | markdownify }} {{ if i18n "or" }}{{ i18n "or" }}{{ else }}{{ "or" }}{{ end }} {{ site.Params.imprintdata.tel }}</div>
|
||
|
{{ end }}
|
||
|
{{ if .covid }}
|
||
|
<div>Covid: {{ .covid }}</div>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
{{ end }}
|