Browse Source

Allow for HTML in the board subtitle

pull/40/head
ctrlcctrlv 11 years ago
parent
commit
b8921508fe
  1. 4
      inc/config.php
  2. 6
      templates/index.html
  3. 8
      templates/mod/dashboard.html
  4. 6
      templates/thread.html

4
inc/config.php

@ -620,6 +620,10 @@
// REMEMBER TO CHMOD attentionbar.txt PROPERLY // REMEMBER TO CHMOD attentionbar.txt PROPERLY
// Oh, and add jQuery in additional_javascript. // Oh, and add jQuery in additional_javascript.
$config['attention_bar'] = false; $config['attention_bar'] = false;
// Allow html in board subtitle. This is useful for placing icons and links.
$config['allow_subtitle_html'] = false;
/* /*
* ==================== * ====================
* Display settings * Display settings

6
templates/index.html

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

8
templates/mod/dashboard.html

@ -8,7 +8,13 @@
- -
{{ board.title|e }} {{ board.title|e }}
{% if board.subtitle %} {% if board.subtitle %}
<small>&mdash; {{ board.subtitle|e }}</small> <small>&mdash;
{% if config.allow_subtitle_html %}
{{ board.subtitle }}
{% else %}
{{ board.subtitle|e }}
{% endif %}
</small>
{% endif %} {% endif %}
{% if mod|hasPermission(config.mod.manageboards) %} {% if mod|hasPermission(config.mod.manageboards) %}
<a href="?/edit/{{ board.uri }}"><small>[{% trans 'edit' %}]</small></a> <a href="?/edit/{{ board.uri }}"><small>[{% trans 'edit' %}]</small></a>

6
templates/thread.html

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

Loading…
Cancel
Save