summaryrefslogtreecommitdiffstats
path: root/themes/newsletter/templates/article.html
blob: 3337d37a71641652b9862f65c52b9d6129f9d1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% block selfurl %}
{{ SITEURL }}/{{ article.url }}
{% endblock selfurl %}

{% block number_and_date %}
issue {{ article.number or 'XX' }}{{ article.date.strftime("%d %b %Y").upper() }}
{% endblock number_and_date %}

{% block content %}
  {{ article.content }}
{% endblock content %}