diff --git a/inc/config.php b/inc/config.php
index fae7d2a5..d8a0ead2 100644
--- a/inc/config.php
+++ b/inc/config.php
@@ -615,6 +615,9 @@
// Number of reports you can create at once.
$config['report_limit'] = 3;
+ // Allow unfiltered HTML in board subtitles. 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 e32ac253..d5e6cd18 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -13,7 +13,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 97f8a3db..e8c43ef7 100644
--- a/templates/thread.html
+++ b/templates/thread.html
@@ -13,7 +13,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 %}
@@ -42,4 +46,4 @@
ready();
{% endraw %}