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

{% block content %}
    <h2>{{ post.title }}</h2>
    <p>{{ post.created_at.strftime('%Y-%m-%d %H:%M') }}</p>
    <div>{{ post.content }}</div>
    <a href="{{ url_for('index') }}">Back to posts</a>
{% endblock %}