Commit 9d8238489a65d9887ec83a09c5e454937965eec6
1 parent
3bce4297
Exists in
master
and in
39 other branches
Reorganizing <title>
Showing
5 changed files
with
9 additions
and
2 deletions
Show diff stats
src/accounts/templates/accounts/user_detail.html
src/planet/templates/feedzilla/base.html
src/super_archives/templates/superarchives/thread-dashboard.html
1 | 1 | {% extends 'base.html' %} |
2 | 2 | {% load i18n %} |
3 | 3 | |
4 | +{% block title %}{% trans 'Groups'|title %}{% endblock %} | |
5 | + | |
4 | 6 | {% block main-content %} |
5 | 7 | <h2>{% trans 'Groups'|title %}</h2> |
6 | 8 | <hr/> |
... | ... | @@ -9,7 +11,7 @@ |
9 | 11 | {% if latest or most_relevant %} |
10 | 12 | <h3 class="text-center"><b>{{ listname|title }} {% if description %} ({{ description }}){% endif %}</b></h3> |
11 | 13 | <hr/> |
12 | - | |
14 | + | |
13 | 15 | <div class="row"> |
14 | 16 | <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12"> |
15 | 17 | <h4>{% trans 'latest'|title %}</h4> | ... | ... |
src/templates/base.html
... | ... | @@ -11,7 +11,7 @@ |
11 | 11 | {% endif %} |
12 | 12 | {% endblock %} |
13 | 13 | |
14 | - <title>Colab - {% block title %}Colab{% endblock %}</title> | |
14 | + <title>{% block title %}Colab{% endblock %} - Colab</title> | |
15 | 15 | |
16 | 16 | <link rel="shortcut icon" type="image/x-icon" href="{{ STATIC_URL }}img/interlegis.ico"> |
17 | 17 | ... | ... |