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.

20 lines
405 B

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