Commit 9d8238489a65d9887ec83a09c5e454937965eec6

Authored by Marco
1 parent 3bce4297

Reorganizing <title>

src/accounts/templates/accounts/user_detail.html
... ... @@ -2,6 +2,7 @@
2 2  
3 3 {% load i18n gravatar i18n_model %}
4 4  
  5 +{% block title %}Perfil{% endblock %}
5 6  
6 7 {% block head_js %}
7 8 {% trans "Messages" as group_collabs %}
... ...
src/planet/templates/feedzilla/base.html
1 1 {% extends 'base.html' %}
2 2 {% load i18n feedzilla_tags %}
3 3  
  4 +{% block title %}Blogs{% endblock %}
  5 +
4 6 {% block main-content %}
5 7 <h2>{% trans 'Community Blogs' %}</h2>
6 8 <hr/>
... ...
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  
... ...
src/templates/home.html
1 1 {% extends "base.html" %}
2 2 {% load i18n %}
3 3  
  4 +{% block title %}Home{% endblock %}
  5 +
4 6 {% block head_js %}
5 7 {% trans "Contributions" as collabs_name %}
6 8  
... ...