From 734f042c9d99e0110d5e4cf8f2994a5ce27385d1 Mon Sep 17 00:00:00 2001 From: garhve Date: Tue, 14 Feb 2023 18:29:13 +0800 Subject: delete zola --- templates/base.html | 43 --------------------------------------- templates/categories/list.html | 18 ---------------- templates/categories/single.html | 21 ------------------- templates/index.html | 36 -------------------------------- templates/post-page.html | 44 ---------------------------------------- templates/tags/list.html | 18 ---------------- templates/tags/single.html | 21 ------------------- 7 files changed, 201 deletions(-) delete mode 100644 templates/base.html delete mode 100644 templates/categories/list.html delete mode 100644 templates/categories/single.html delete mode 100644 templates/index.html delete mode 100644 templates/post-page.html delete mode 100644 templates/tags/list.html delete mode 100644 templates/tags/single.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html deleted file mode 100644 index 590d592..0000000 --- a/templates/base.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - {% block title %} - {{ config.title }} - {% endblock %} - - - - - - - - - - -
- - -
- - -
-
- {% block content %} {% endblock %} -
-
- - - - - diff --git a/templates/categories/list.html b/templates/categories/list.html deleted file mode 100644 index b6d98c2..0000000 --- a/templates/categories/list.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "base.html" %} - -{% block title %} -Categories -{% endblock %} - -{% block content %} -

[Categories]

- - -{% endblock content %} \ No newline at end of file diff --git a/templates/categories/single.html b/templates/categories/single.html deleted file mode 100644 index b02797e..0000000 --- a/templates/categories/single.html +++ /dev/null @@ -1,21 +0,0 @@ -{% extends "base.html" %} - -{% block title %} -{{ term.name }} | {{ config.title }} -{% endblock %} - -{% block content %} -

[Category: {{ term.name }}]

- -{% for page in term.pages %} -

-

- {{ page.date }} -
-
- {{ page.title }} -
-

-{% endfor %} - -{% endblock content %} diff --git a/templates/index.html b/templates/index.html deleted file mode 100644 index 64ac3cd..0000000 --- a/templates/index.html +++ /dev/null @@ -1,36 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% set section = get_section(path="post/_index.md") %} -{% for year, pages in section.pages | group_by(attribute="year") %} -

{{ year}}

- - {% for page in pages %} -

-

- {{ page.date }} -
- -
- {{ page.title }} -
- -
- {% if page.taxonomies.categories %} - {% for category in page.taxonomies.categories %} -  /{{ category }} - {% endfor %} - {% endif %} - - {% if page.taxonomies.tags %} - {% for tag in page.taxonomies.tags %} -  #{{ tag }} - {% endfor %} - {% endif %} -
-

- {% endfor %} -{% endfor %} - -{% endblock content %} diff --git a/templates/post-page.html b/templates/post-page.html deleted file mode 100644 index 894a27d..0000000 --- a/templates/post-page.html +++ /dev/null @@ -1,44 +0,0 @@ -{% extends "base.html" %} - -{% block title %} -{{ page.title }} | {{ config.title }} -{% endblock %} - -{% block content %} -

-

{{ page.title }}
-

-

-

{{ page.date }}
-
- {% if page.taxonomies.categories %} - {% for category in page.taxonomies.categories %} - /{{ category }} - {% endfor %} - {% endif %} - {% if page.taxonomies.tags %} - {% for tag in page.taxonomies.tags %} -  #{{ tag }} - {% endfor %} - {% endif %} -
-

- -

- {{ page.content | safe }} -

- -{% if page.extra.math %} - - -{% endif %} - -{% endblock content %} diff --git a/templates/tags/list.html b/templates/tags/list.html deleted file mode 100644 index 2b5a16c..0000000 --- a/templates/tags/list.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "base.html" %} - -{% block title %} -Tags -{% endblock %} - -{% block content %} -

[Tags]

- - -{% endblock content %} \ No newline at end of file diff --git a/templates/tags/single.html b/templates/tags/single.html deleted file mode 100644 index 0549304..0000000 --- a/templates/tags/single.html +++ /dev/null @@ -1,21 +0,0 @@ -{% extends "base.html" %} - -{% block title %} -{{ term.name }} | {{ config.title }} -{% endblock %} - -{% block content %} -

[Tag: {{ term.name }}]

- -{% for page in term.pages %} -

-

- {{ page.date }} -
-
- {{ page.title }} -
-

-{% endfor %} - -{% endblock content %} \ No newline at end of file -- cgit v1.2.3-70-g09d2