{% for article in articles %}
{{ article.title }}
{% if article.content|length > 120 %}
{{ article.content[:120] }}...
{% else %}
{{ article.content }}
{% endif %}
Categories: {{ article.categories|join(', ') }}
Read More{% endfor %}
No comments yet. Be the first to comment!