##// 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
neko259
Added landing page which will be the default on /
r1732 {% 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>
neko259
Show threads' sections in the landing page
r1739 <br />
neko259
Added landing page which will be the default on /
r1732 <div class="landing-tags">
{{ section_str|safe }}
</div>
neko259
Show threads' sections in the landing page
r1739 <br />
neko259
Added landing page which will be the default on /
r1732 <div class="landing-threads">
{% for op in latest_threads %}
neko259
Show new and active threads for today (-24 hrs from now) at the landing page
r1740 {{ op.get_link_view|safe }} {{ op.get_title_or_text }} ({{ op.thread.get_sections_str|safe }}) +{{ op.today_post_count }}<br />
neko259
Added landing page which will be the default on /
r1732 {% endfor %}
</div>
</div>
{% endblock %}