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