{% extends "base.html" %} {% block title %}{{ _('home.title', current_locale) }}{% endblock %} {% block meta_description %}{{ _('home.meta_description', current_locale) }}{% endblock %} {% block meta_keywords %}{{ _('home.meta_keywords', current_locale) }}{% endblock %} {% block og_type %}website{% endblock %} {% block og_title %}{{ _('home.title', current_locale) }}{% endblock %} {% block og_description %}{{ _('home.meta_description', current_locale) }}{% endblock %} {% block twitter_title %}{{ _('home.title', current_locale) }}{% endblock %} {% block twitter_description %}{{ _('home.meta_description', current_locale) }}{% endblock %} {% block content %} {% if posts %}
{% for post in posts %}

{{ post.title }}

{% if post.published %} {{ _('home.status_published', current_locale) }} {% else %} {{ _('home.status_draft', current_locale) }} {% endif %}
{{ post.author_id[0]|upper }} {{ post.author_id }} {{ post.created_at.strftime('%B %d, %Y') }} 👍 {{ post.like_count }} 💬 {{ post.comment_count }}
{{ post.content[:200] }}{% if post.content|length > 200 %}...{% endif %}
{% for tag in post.tags %} {{ tag }} {% endfor %}
{{ _('home.read_more', current_locale) }}
{% endfor %}
{% else %}
📝

{{ _('home.empty_title', current_locale) }}

{{ _('home.empty_description', current_locale) }}

{{ _('home.empty_action', current_locale) }}
{% endif %} {% endblock %}