{% extends "base.html" %} {% block title %}Blog - Home{% endblock %} {% block content %} {% if posts %}
{% for post in posts %}

{{ post.title }}

{% if post.published %} Published {% else %} Draft {% endif %}
{{ post.author_id[0]|upper }} {{ post.author_id }} {{ post.created_at.strftime('%B %d, %Y') }}
{{ post.content.value[:200] }}{% if post.content.value|length > 200 %}...{% endif %}
{% for tag in post.tags %} {{ tag }} {% endfor %}
Read more
{% endfor %}
{% else %}
📝

No posts yet

Be the first to write a post!

Create your first post
{% endif %} {% endblock %}