flask_blog/templates/index.html

14 lines
348 B
HTML

{% extends 'base.html' %}
{% block content %}
<h1>{% block title %} Welcome to FlaskBlog {% endblock %}</h1>
{% for post in posts %}
<a href="{{ url_for('post', post_id=post['id']) }}">
<h2>{{ post['title'] }}</h2>
</a>
<span class="badge text-bg-primary">{{ post['created'] }}</span>
<hr>
{% endfor %}
{% endblock %}