Commit 52fd48cf674a922560a8d1039698ba4511cbf604
1 parent
23c4b094
Exists in
master
and in
13 other branches
Fixing tags from home and adding margin to titles
Showing
2 changed files
with
32 additions
and
25 deletions
Show diff stats
src/colab/deprecated/templates/home.html
... | ... | @@ -12,21 +12,21 @@ |
12 | 12 | </div> |
13 | 13 | </div> |
14 | 14 | |
15 | - <h3 class="text-center"><strong>{% trans "INTERLEGIS COMMUNITIES" %}</strong></h3> | |
15 | + <h3 class="text-center">{% trans "INTERLEGIS COMMUNITIES" %}</h3> | |
16 | 16 | {% endblock %} |
17 | 17 | |
18 | 18 | {% block main-content %} |
19 | 19 | |
20 | 20 | <div class="row"> |
21 | 21 | <div class="col-lg-6"> |
22 | - <h3> | |
23 | - <span>{% trans "Latest collaborations" %}</span> | |
24 | - <a class="pull-right" target="_blank" | |
25 | - href="{% url 'rss_latest_colab' %}" | |
26 | - title="{% trans 'RSS - Latest collaborations' %}"> | |
27 | - <div class="rss-icon"></div> | |
28 | - </a> | |
22 | + <h3 class="column-title"> | |
23 | + {% trans "Latest collaborations" %} | |
29 | 24 | </h3> |
25 | + <a class="pull-right" target="_blank" | |
26 | + href="{% url 'rss_latest_colab' %}" | |
27 | + title="{% trans 'RSS - Latest collaborations' %}"> | |
28 | + <div class="rss-icon"></div> | |
29 | + </a> | |
30 | 30 | <ul> |
31 | 31 | {% for doc in latest_docs %} |
32 | 32 | {% include "message-preview.html" %} |
... | ... | @@ -37,9 +37,9 @@ |
37 | 37 | {% trans "View more collaborations..." %} |
38 | 38 | </a> |
39 | 39 | </div> |
40 | - | |
40 | + | |
41 | 41 | <div class="col-lg-6"> |
42 | - <h3>{% trans "Distribution of Collaborations" %}</h3> | |
42 | + <h3 class="column-title">{% trans "Distribution of Collaborations" %}</h3> | |
43 | 43 | <div></div> |
44 | 44 | </div> |
45 | 45 | </div> |
... | ... | @@ -48,14 +48,14 @@ |
48 | 48 | |
49 | 49 | <div class="row"> |
50 | 50 | <div class="col-lg-6"> |
51 | - <h3> | |
52 | - <span>{% trans "Discussions Most Relevance" %}</span> | |
53 | - <a class="pull-right" target="_blank" | |
54 | - href="{% url 'rss_hottest_threads' %}" | |
55 | - title="{% trans "RSS - Discussions Most Relevance" %}"> | |
56 | - <div class="rss-icon"></div> | |
57 | - </a> | |
51 | + <h3 class="column-title"> | |
52 | + {% trans "Discussions Most Relevance" %} | |
58 | 53 | </h3> |
54 | + <a class="pull-right" target="_blank" | |
55 | + href="{% url 'rss_hottest_threads' %}" | |
56 | + title="{% trans "RSS - Discussions Most Relevance" %}"> | |
57 | + <div class="rss-icon"></div> | |
58 | + </a> | |
59 | 59 | <ul> |
60 | 60 | {% for thread in hottest_threads %} |
61 | 61 | {% include "message-preview.html" with doc=thread.latest_message %} |
... | ... | @@ -66,16 +66,16 @@ |
66 | 66 | {% trans "View more discussions relevance..." %} |
67 | 67 | </a> |
68 | 68 | </div> |
69 | - | |
69 | + | |
70 | 70 | <div class="col-lg-6"> |
71 | - <h3> | |
72 | - <span>{% trans "Latest Discussions" %}</span> | |
73 | - <a class="pull-right" target="_blank" | |
74 | - href="{% url 'rss_latest_threads' %}" | |
75 | - title="{% trans "RSS - Latest Discussions" %}"> | |
76 | - <div class="rss-icon"></div> | |
77 | - </a> | |
71 | + <h3 class="column-title"> | |
72 | + {% trans "Latest Discussions" %} | |
78 | 73 | </h3> |
74 | + <a class="pull-right" target="_blank" | |
75 | + href="{% url 'rss_latest_threads' %}" | |
76 | + title="{% trans "RSS - Latest Discussions" %}"> | |
77 | + <div class="rss-icon"></div> | |
78 | + </a> | |
79 | 79 | <ul> |
80 | 80 | {% for thread in latest_threads %} |
81 | 81 | {% include "message-preview.html" with doc=thread.latest_message %} | ... | ... |