{% extends 'blog/partials/base.html' %} {% block content %} {% if type == 'articles' %}

All Posts

{% elif type == 'articles-archive' %}

Posts made in {{ date }}

{% elif type == 'articles-category' %}

Posts made in Category: {{ category_name }}

{% endif %}
Filters:     {% if type != 'articles-category' %} {% endif %}   
{% if posts %}
{% include 'blog/partials/post_list.html' %}
{% if page == 1 %} {% else %} {% endif %} {% load times %} {% for i in num_pages|times %} {% endfor %} {% if page == num_pages %} {% else %} {% endif %}
« « {{ i }} » »
{% include 'blog/partials/mathjax.html' %} {% else %}

No posts found.

{% endif %} {% endblock %}