{% set name = '' %}
{% set link = '' %}
{% extends "base.html" %}
{% block content %}
{% from 'macro.html' import genurl with context %}
{% if articles %}
{% if articles_page %}
{% set articles = articles_page.object_list %}
{% endif %}
{% for article in articles %}
{% set year = article.date|strftime('%Y') %}
{% set month = article.date|strftime('%B') %}
{% set month_index = article.date|strftime('%m') %}
{% set article_url = genurl( article.url, force=True ) %}