{% extends 'base.html' %} {% block content %}

{% block title %} Welcome to {{author}} Python Flask Blog Post {% endblock %}

{% for post in posts %}
  • {{post.title}} ©
    {{post.content}}
  • {{ post['created'] }} Edit
    {% endfor %} {% endblock %}