##// END OF EJS Templates
Use title class for thread titles in landing
Use title class for thread titles in landing

File last commit:

r2000:60545aed default
r2000:60545aed default
Show More
landing.html
36 lines | 1.0 KiB | text/html | HtmlLexer
{% extends "boards/base.html" %}
{% load i18n %}
{% load static %}
{% load board %}
{% block head %}
<title>{{ site_name|safe }}</title>
{% endblock %}
{% block content %}
{% autoescape off %}
<div id="posts-table">
<div class="landing-tags">
{{ section_str }}
</div>
<br />
{% if latest_threads %}
<div class="landing-threads">
{% for op in latest_threads %}
<div class="thread-short gallery_image">
{{ op.attachments.first.get_view|safe }}
{% with title=op.get_title_or_text %}
{% if title %}
<div class="title">{{ title }}</div>
{% endif %}
{% endwith %}
<div>{{ op.thread.get_sections_str }}</div>
<div>{{ op.get_link_view }} +{{ op.today_post_count }}</div>
</div>
{% endfor %}
</div>
{% endif %}
</div>
{% endautoescape %}
{% endblock %}