{{ post.title }}
{{ post.content | replace("\n", "
") | safe }}
") | safe }}
{% extends "_base.jinja2" %}
{% block title %}My Blog{% endblock %}
{% block content %}
{% if request.query.slug %}
{% for post in posts %}
{% if post.slug == request.query.slug %}
{{ post.title }}
{{ post.content | replace("\n", "
") | safe }}
No posts yet. Create one!