summary refs log tree commit diff
path: root/templates/index.html
blob: 9a05e7aad172e8e32b80e43a22202225bdac9316 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends 'base.html' %}

{% block content %}
    <h2>Posts</h2>
    <ul>
        {% for post in posts %}
            <li><a href="{{ url_for('post', post_id=post.id) }}">{{ post.title }}</a> - {{ post.created_at.strftime('%Y-%m-%d') }}</li>
        {% endfor %}
    </ul>
    <a href="{{ url_for('create') }}">Create a new post</a>
{% endblock %}