##// END OF EJS Templates
Show new and active threads for today (-24 hrs from now) at the landing page
Show new and active threads for today (-24 hrs from now) at the landing page

File last commit:

r1740:69b1bc87 default
r1740:69b1bc87 default
Show More
landing.html
33 lines | 938 B | text/html | HtmlLexer
{% extends "boards/base.html" %}
{% load i18n %}
{% load static %}
{% block head %}
<title>{{ site_name }}</title>
{% endblock %}
{% block content %}
<div class="post">
<div class="landing-images">
{% for image in images %}
<div class="gallery_image">
{{ image.get_view|safe }}
{% with image.get_random_associated_post as post %}
{{ post.get_link_view|safe }}
{% endwith %}
</div>
{% endfor %}
</div>
<br />
<div class="landing-tags">
{{ section_str|safe }}
</div>
<br />
<div class="landing-threads">
{% for op in latest_threads %}
{{ op.get_link_view|safe }} {{ op.get_title_or_text }} ({{ op.thread.get_sections_str|safe }}) +{{ op.today_post_count }}<br />
{% endfor %}
</div>
</div>
{% endblock %}