blob: 8272d378522dfa8a2bad9baf5c8e9f075909515a (
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|markdown|safe }}</div>
<a href="{{ url_for('index') }}">Back to posts</a>
{% endblock %}
|