+ {{ article.title }}
+ {% if article.subtitle %}
+ {{ article.subtitle }}
+ {% endif %}
+ Added on the {{ article.created|date:'jS \o\f F, Y' }}
+ {% if article.created.date != article.updated.date %}
+ and updated on the {{ article.updated|date:'jS \o\f F, Y' }}
+ {% endif %}
+
+
+ {% if article.introduction %}
+ {{ article.introduction|linebreaksbr }}
+
+ {% endif %}
+
+ {{ article.body_as_markdown|safe }}
+
+
+
+
Posted in the {{ article.category }} category
+
+ {% for tag in article.tags.all %}
+ {{ tag }}{% if tag != article.tags.last %},{% endif %}
+ {% endfor %}
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/articles/templates/articles/article_list.html b/articles/templates/articles/article_list.html
new file mode 100644
index 0000000..01727cb
--- /dev/null
+++ b/articles/templates/articles/article_list.html
@@ -0,0 +1,58 @@
+{% extends 'base.html' %}
+
+{% block content %}
+