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

Latest Articles

{% if articles.items %}
{% for article in articles.items %}
{% if article.image_url %}
{{ article.title }}
{% endif %}
{{ article.title }}
{% if article.excerpt %}

{{ article.excerpt[:200] }}{% if article.excerpt|length > 200 %}...{% endif %}

{% endif %}
{{ article.date_published.strftime('%B %d, %Y') if article.date_published else 'Date not available' }} {% if article.author_name %} {{ article.author_name }} {% endif %}
{{ article.view_count }} {{ article.likes_count if article.likes_count else 0 }} {{ article.comments_count if article.comments_count else 0 }}
{% endfor %}
{% if articles.pages > 1 %} {% endif %} {% else %} {% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}