{% 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 }}

By {{ post.author }} · {{ post.created_at }}
{{ post.content | replace("\n", "
") | safe }}

← All posts

{% endif %} {% endfor %} {% else %}

Recent Posts

{% if not posts %}

No posts yet. Create one!

{% else %} {% for post in posts %}

{{ post.title }}

{{ post.author }} · {{ post.created_at }}
{{ post.content | truncate(150) }}
{% endfor %} {% endif %} {% endif %} {% endblock %}