From ef3d6eb4a9857478a9d1482af4962bff3e01d23b Mon Sep 17 00:00:00 2001 From: root Date: Mon, 18 Dec 2017 14:34:22 +0000 Subject: [PATCH] remove unused templates --- content/templates/project.html | 25 ------------------------ content/templates/text.html | 35 ---------------------------------- content/templates/work.html | 24 ----------------------- 3 files changed, 84 deletions(-) delete mode 100644 content/templates/project.html delete mode 100644 content/templates/text.html delete mode 100644 content/templates/work.html diff --git a/content/templates/project.html b/content/templates/project.html deleted file mode 100644 index f7b36cb..0000000 --- a/content/templates/project.html +++ /dev/null @@ -1,25 +0,0 @@ -{% extends 'base.html' %} - - -{% block content %} - {% include "featured.html" %} -
- -
- {% for content in content %} -
- {% if content.image_url %} -
- -
- {% endif %} -
- {{ content.title }} -

{{content.header|striptags|truncatechars:100}}

-
-
- {% endfor %} -
-
- - {% endblock %} diff --git a/content/templates/text.html b/content/templates/text.html deleted file mode 100644 index bc55042..0000000 --- a/content/templates/text.html +++ /dev/null @@ -1,35 +0,0 @@ -{% extends 'base.html' %} - - -{% block content %} - - {% for content in content %} - {% if forloop.first %} -
- {% if content.image %} - - {% endif %} -
-

{{content.title}}

-

{{content.header|striptags}}

-

{{content.body|striptags}}

-
- {% endif %} - {% endfor %} - -
- -
- -
- - {% for content in content %} -
- {{ content.title }} -

{{content.header|striptags|truncatechars:100}}

-
- {% endfor %} -
-
- - {% endblock %} diff --git a/content/templates/work.html b/content/templates/work.html deleted file mode 100644 index a4ba69b..0000000 --- a/content/templates/work.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends 'base.html' %} - - -{% block content %} - {% include "featured.html" %} - -
- -
- {% for content in content %} -
-
- -
-
- {{ content.title }} -

{{content.header|striptags|truncatechars:100}}

-
-
- {% endfor %} -
-
- - {% endblock %}