##// END OF EJS Templates
Use title class for thread titles in landing
neko259 -
r2000:60545aed default
parent child Browse files
Show More
@@ -1,36 +1,36 b''
1 {% extends "boards/base.html" %}
1 {% extends "boards/base.html" %}
2
2
3 {% load i18n %}
3 {% load i18n %}
4 {% load static %}
4 {% load static %}
5 {% load board %}
5 {% load board %}
6
6
7 {% block head %}
7 {% block head %}
8 <title>{{ site_name|safe }}</title>
8 <title>{{ site_name|safe }}</title>
9 {% endblock %}
9 {% endblock %}
10
10
11 {% block content %}
11 {% block content %}
12 {% autoescape off %}
12 {% autoescape off %}
13 <div id="posts-table">
13 <div id="posts-table">
14 <div class="landing-tags">
14 <div class="landing-tags">
15 {{ section_str }}
15 {{ section_str }}
16 </div>
16 </div>
17 <br />
17 <br />
18 {% if latest_threads %}
18 {% if latest_threads %}
19 <div class="landing-threads">
19 <div class="landing-threads">
20 {% for op in latest_threads %}
20 {% for op in latest_threads %}
21 <div class="thread-short gallery_image">
21 <div class="thread-short gallery_image">
22 {{ op.attachments.first.get_view|safe }}
22 {{ op.attachments.first.get_view|safe }}
23 {% with title=op.get_title_or_text %}
23 {% with title=op.get_title_or_text %}
24 {% if title %}
24 {% if title %}
25 <div>{{ title }}</div>
25 <div class="title">{{ title }}</div>
26 {% endif %}
26 {% endif %}
27 {% endwith %}
27 {% endwith %}
28 <div>{{ op.thread.get_sections_str }}</div>
28 <div>{{ op.thread.get_sections_str }}</div>
29 <div>{{ op.get_link_view }} +{{ op.today_post_count }}</div>
29 <div>{{ op.get_link_view }} +{{ op.today_post_count }}</div>
30 </div>
30 </div>
31 {% endfor %}
31 {% endfor %}
32 </div>
32 </div>
33 {% endif %}
33 {% endif %}
34 </div>
34 </div>
35 {% endautoescape %}
35 {% endautoescape %}
36 {% endblock %}
36 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now