{% extends 'base_layout.html' %} {% block content%}

Articles List

Tags

{% for article in articles %}

{{ article.title }}

{{ article.snippet }}

{{ article.date }}

    {% for tag in article.tags.all %}
  • {{ tag.name }}
  • {% endfor %}

added by {{ article.author.username }}

{% endfor %}
{% endblock %}