Allow for HTML in the board subtitle

This commit is contained in:
ctrlcctrlv 2013-08-08 18:58:44 +00:00
parent 3aa1305dab
commit b8921508fe
4 changed files with 21 additions and 3 deletions

View file

@ -18,7 +18,11 @@
<h1>{{ board.url }} - {{ board.title|e }}</h1>
<div class="subtitle">
{% if board.subtitle %}
{{ board.subtitle|e }}
{% if config.allow_subtitle_html %}
{{ board.subtitle }}
{% else %}
{{ board.subtitle|e }}
{% endif %}
{% endif %}
{% if mod %}<p><a href="?/">{% trans %}Return to dashboard{% endtrans %}</a></p>{% endif %}
</div>