You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
415 B

{% extends 'base.html' %}
{% block content %}
<a href="{{ url_for('post.create') }}">Submit A Meme</a><br>
<a href="{{ url_for('debug') }}">Debug</a>
{% block header %}
<h1>{% block title %}Latest Submissions{% endblock %}</h1>
{% endblock %}
<ul>
{% for post in posts %}
<li><a href="{{ url_for('post.read', id=post.id) }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{{ page }}
{% endblock %}