From 6c3cea505aed15affae392a45f7e1d82fe593e7e Mon Sep 17 00:00:00 2001 From: Dooho Yi Date: Tue, 5 May 2020 05:20:42 +0900 Subject: [PATCH] =?UTF-8?q?-=20=E2=80=98theme/templates/index.html.old?= =?UTF-8?q?=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- theme/templates/index.html.old | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 theme/templates/index.html.old 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 %}