##// END OF EJS Templates
Show last replies feed on the landing page
Show last replies feed on the landing page

File last commit:

r2092:c826bdd6 default
r2092:c826bdd6 default
Show More
landing.html
42 lines | 1.3 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 %}
<hr />
<div>{{ op.thread.get_sections_str }}</div>
<div>{{ op.get_link_view }}</div>
<div>{{ op.thread.last_edit_time }}</div>
<div>♥{{ op.thread.get_reply_count }} +{{ op.today_post_count }}</div>
</div>
{% endfor %}
</div>
{% endif %}
{% for post in latest_posts %}
{% post_view post truncated=True need_op_data=True %}
{% endfor %}
</div>
{% endautoescape %}
{% endblock %}