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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
suchwow/suchwow/templates/post/top.html

25 lines
546 B

4 years ago
{% extends 'base.html' %}
{% block content %}
<div class="container" style="text-align:center;">
<div class="title">
<h3>{% block title %}Top Posts{% endblock %}</h3>
</div>
{% if posts %}
<ul style="list-style-type:none;">
{% for post in posts %}
<li>#{{ post[1].id }} - <a href="{{ url_for('post.read', id=post[1].id) }}">{{ post[1].title }}</a> - {{ post[1].submitter }} - {{ post[0] }} WOW received</li>
4 years ago
{% endfor %}
</ul>
{% else %}
<p>No posts yet!</p>
{% endif %}
</div>
{% endblock %}