diff --git a/inc/config.php b/inc/config.php
index 4c37e969..8e733f2e 100644
--- a/inc/config.php
+++ b/inc/config.php
@@ -620,6 +620,10 @@
// REMEMBER TO CHMOD attentionbar.txt PROPERLY
// Oh, and add jQuery in additional_javascript.
$config['attention_bar'] = false;
+
+ // Allow html in board subtitle. This is useful for placing icons and links.
+ $config['allow_subtitle_html'] = false;
+
/*
* ====================
* Display settings
diff --git a/templates/index.html b/templates/index.html
index 12150d0b..f8c1c594 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -25,7 +25,11 @@
{{ board.url }} - {{ board.title|e }}
{% if board.subtitle %}
- {{ board.subtitle|e }}
+ {% if config.allow_subtitle_html %}
+ {{ board.subtitle }}
+ {% else %}
+ {{ board.subtitle|e }}
+ {% endif %}
{% endif %}
{% if mod %}
{% trans %}Return to dashboard{% endtrans %}
{% endif %}
diff --git a/templates/mod/dashboard.html b/templates/mod/dashboard.html
index e9fb7c9c..e2f7507d 100644
--- a/templates/mod/dashboard.html
+++ b/templates/mod/dashboard.html
@@ -8,7 +8,13 @@
-
{{ board.title|e }}
{% if board.subtitle %}
- — {{ board.subtitle|e }}
+ —
+ {% if config.allow_subtitle_html %}
+ {{ board.subtitle }}
+ {% else %}
+ {{ board.subtitle|e }}
+ {% endif %}
+
{% endif %}
{% if mod|hasPermission(config.mod.manageboards) %}
[{% trans 'edit' %}]
diff --git a/templates/thread.html b/templates/thread.html
index 7fe60a39..9882230f 100644
--- a/templates/thread.html
+++ b/templates/thread.html
@@ -18,7 +18,11 @@
{{ board.url }} - {{ board.title|e }}
{% if board.subtitle %}
- {{ board.subtitle|e }}
+ {% if config.allow_subtitle_html %}
+ {{ board.subtitle }}
+ {% else %}
+ {{ board.subtitle|e }}
+ {% endif %}
{% endif %}
{% if mod %}
{% trans %}Return to dashboard{% endtrans %}
{% endif %}