diff --git a/theme/templates/index.html.old b/theme/templates/index.html.old deleted file mode 100644 index 32d4e36..0000000 --- a/theme/templates/index.html.old +++ /dev/null @@ -1,34 +0,0 @@ -{% extends "base.html" %} -{% block content_title %}{% endblock %} -{% block content %} -{% if articles %} - {% for article in articles %} - - {# First item #} - {% if loop.first %} -
-

{# {{ SITENAME }} #} {% if SITESUBTITLE %} {{ SITESUBTITLE }}{% endif %} {#:#} {{ article.title }}

- {% if not HIDE_DATE %}{% endif %} -
- -
- {{ article.content }}{% include 'comments.html' %} -
- {% if loop.length > 1 %} -
-

All posts

-
    - {% endif %} - {# other items #} - {% else %} -
  1. {{ article.title }}
  2. - {% endif %} - {% if loop.length > 1 %} -
-
- {% endif %} - {% endfor %} -{% else %} - No posts found. -{% endif %} -{% endblock content %}