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]
-
-
- {% for term in terms %}
- -
- /{{ term.name }}
- ({{ term.pages | length }})
-
- {% endfor %}
-
-{% 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 }}
-
-
-
-{% 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") %}
-
- {% 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 %}
-
- {% 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 %}
-
-
-
-