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 }}