mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2026-02-04 10:35:30 +00:00
15 lines
440 B
Plaintext
15 lines
440 B
Plaintext
{{- $annotation := index . 0 -}}
|
|
{{- $label := "Annotation" -}}
|
|
{{- if gt (len .) 1 -}}
|
|
{{- if index . 1 -}}
|
|
{{- $label = index . 1 -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
<div class="inputwrapper">
|
|
<div class="inputlabelrow">
|
|
<label for="annotation" class="inputlabel">{{ $label }}</label>
|
|
</div>
|
|
<textarea name="annotation" id="annotation" class="inputinput" placeholder="" autocomplete="off" rows="2">{{- $annotation -}}</textarea>
|
|
</div>
|