{% if session.username != Anonymous %}
logged in as:
{{ session.username }}
{% endif %}
home
login
logout
{% if admin %}
admin
{% endif %}
/b/
/g/
/a/
/v/
/w/
/x/
/t/
/s/
/pol/
{% block content %}
{{ header }}
post!
{% for post in posts %}
{{ post.username }} {{ post.timestamp }}
{{ post._id }}
{% if post.image %}
{% endif %}
{{ post.content }}
{% endfor %}
{% endblock %}