mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
Solve #2828 by adding nunjucks safe filter to the message Co-authored-by: Grena <grena@grenabox.fr> Co-authored-by: Veeck <github@veeck.de>
10 lines
214 B
Plaintext
10 lines
214 B
Plaintext
{% if title %}
|
|
<span class="thin dimmed medium">{{ title }}</span>
|
|
{% endif %}
|
|
{% if message %}
|
|
{% if title %}
|
|
<br/>
|
|
{% endif %}
|
|
<span class="light bright small">{{ message | safe }}</span>
|
|
{% endif %}
|