{% extends 'base.html' %}
{% import 'shared/pub.html' as pub %}
{% block title %} {{page.title}} {% endblock %}
{% block body %}
Published Articles
Published Articles
{% for article in articles_page.object_list %}
{{ pub.publisting(article) }}
{% endfor %}
{% endblock %}