landing.html
33 lines
| 938 B
| text/html
|
HtmlLexer
neko259
|
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
|
r1739 | <br /> | ||
neko259
|
r1732 | <div class="landing-tags"> | ||
{{ section_str|safe }} | ||||
</div> | ||||
neko259
|
r1739 | <br /> | ||
neko259
|
r1732 | <div class="landing-threads"> | ||
{% for op in latest_threads %} | ||||
neko259
|
r1740 | {{ op.get_link_view|safe }} {{ op.get_title_or_text }} ({{ op.thread.get_sections_str|safe }}) +{{ op.today_post_count }}<br /> | ||
neko259
|
r1732 | {% endfor %} | ||
</div> | ||||
</div> | ||||
{% endblock %} | ||||