##// END OF EJS Templates
Re-added the functionality of 'add the tag we are standing on to the form'
Re-added the functionality of 'add the tag we are standing on to the form'

File last commit:

r1732:24d0b585 default
r1738:9c876357 default
Show More
landing.html
31 lines | 845 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>
<div class="landing-tags">
{{ section_str|safe }}
</div>
<div class="landing-threads">
{% for op in latest_threads %}
{{ op.get_link_view|safe }} {{ op.get_title_or_text }}<br />
{% endfor %}
</div>
</div>
{% endblock %}