flask_blog/templates/post.html

8 lines
230 B
HTML

{% extends 'base.html' %}
{% block content %}
<h2>{% block title %} {{ post['title'] }} {% endblock %}</h2>
<p>{{ post['content'] }}</p>
<span class="badge text-bg-primary">{{ post['created'] }}</span>
{% endblock %}