kavanland
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

twitter.html
text/html

Download raw (657 bytes)

{% extends "aacore/base.html" %}

{% block body %}
<section id="content">
    {% for post in posts %}
        <section class="box annotation" data-url="">
            {% if post.photos.all %}
                {% for media in post.photos.all %}
                    <img src="{{ media.url }}" alt="" />
                {% endfor %}
            {% endif %}

            {{ post.text|safe }}
             
            <p>
                <a href="{{ post.url }}">
                    Posted by {{ post.user }}
                    on <date>{{ post.date }}</date>
                </a>
            </p>
        </section>
    {% endfor %}
</section>
{% endblock %}