+
{{ article.title }}{% if article.status != article.PUBLISHED %}
({{ article.status }}){% endif %}
- {% include "articles/metadata_snippet.html" %}
+ {% include "articles/snippets/metadata.html" %}
{{ article.get_formatted_content|safe }}
-
{% endblock %}
diff --git a/articles/templates/articles/article_list.html b/articles/templates/articles/article_list.html
index 2a72a68..5e5ad2b 100644
--- a/articles/templates/articles/article_list.html
+++ b/articles/templates/articles/article_list.html
@@ -1,38 +1,44 @@
{% extends 'articles/base.html' %}
+{% block override_header %}
+ {% include "articles/snippets/style_home.html" %}
+{% endblock %}
+
{% block title %}{% endblock %}
+
{% block content %}
- {{ blog_title }}{% if title %} · {{ title }}{% endif %}
- {{ blog_description }} {% include "articles/admin_link_snippet.html" %}
-
+
Blog posts
-
- {% for article in articles %}
- -
- {% include "articles/datetime_snippet.html" %}
- : {{ article.title }}
-
- {% empty %}
- - No article here. Come back later ๐
- {% endfor %}
-
+
+ Date | Title |
+ {% for article in articles %}
+
+ {% include "articles/snippets/datetime.html" %} |
+ {{ article.title }} |
+
+ {% empty %}
+ No article here. Come back later ๐ |
+ {% endfor %}
+
Comments
-- Comments are hard to manage. I tried enabling them but I only got spam. - If you want to react to this content or interact with me, please head to the - about me page. ๐ -
-