From 8144157ea2183f03185fdd84fff400d64f71aa4d Mon Sep 17 00:00:00 2001 From: Bastian Venthur Date: Sat, 6 Feb 2021 14:36:06 +0100 Subject: [PATCH] removed my template --- templates/archive.html | 23 ----------------------- templates/article.html | 31 ------------------------------- templates/base.html | 33 --------------------------------- templates/page.html | 1 - 4 files changed, 88 deletions(-) delete mode 100644 templates/archive.html delete mode 100644 templates/article.html delete mode 100644 templates/base.html delete mode 100644 templates/page.html diff --git a/templates/archive.html b/templates/archive.html deleted file mode 100644 index 741daa0..0000000 --- a/templates/archive.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends "base.html" %} - -{% block title %}{{ title }}{% endblock %} - -{% block head %} - {{ super() }} -{% endblock %} - - -{% block content %} - -{% for entry in archive %} - -
-
- -

{{entry.title}}

-
-
- -{% endfor %} - -{% endblock %} diff --git a/templates/article.html b/templates/article.html deleted file mode 100644 index eff93a5..0000000 --- a/templates/article.html +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "base.html" %} - -{% block title %}{{ title }}{% endblock %} - -{% block head %} - {{ super() }} - -{% endblock %} - -{% block content %} - - {% if title %} -

{{ title }}

- {% endif %} - - {% if date %} -

Written on {{ date.date() }}.

- {% endif %} - - {{ content }} - - {% if tags %} -

This entry was tagged - {% for tag in tags|sort(case_sensitive=true) %} - {%- if not loop.first and not loop.last %}, {% endif -%} - {%- if loop.last and not loop.first %} and {% endif %} - {{ tag }} - {%- endfor %} -

- {% endif %} -{% endblock %} diff --git a/templates/base.html b/templates/base.html deleted file mode 100644 index a5acf64..0000000 --- a/templates/base.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - {% block title %}{% endblock %} - - - -
-

Still don't have a title

-

-- and no tagline either

-

Bastian Venthur's Blog

- -
- -
- {% block content %} - {% endblock %} -
- - - diff --git a/templates/page.html b/templates/page.html deleted file mode 100644 index cddd070..0000000 --- a/templates/page.html +++ /dev/null @@ -1 +0,0 @@ -{{ content }}