vanilla-hugo/layouts/shortcodes/message.html
Danila Fedorin 4b19da5006 Reduce whitespace in templates and avoid polluting the page scratch
Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
2024-06-09 18:36:54 -07:00

11 lines
316 B
HTML

<span class="message side-{{ .Get 0 }}">
<span class="message-sender">
{{- if (eq (.Get 1) "reader") -}}
{{- partial "icon.html" "moon" -}}
{{- else -}}
{{- partial "icon.html" "sun" -}}
{{- end -}}
</span>
<span class="message-text">{{- .Inner -}}</span>
</span>