summaryrefslogtreecommitdiff
path: root/templates/partials
diff options
context:
space:
mode:
Diffstat (limited to 'templates/partials')
-rw-r--r--templates/partials/footer.html7
-rw-r--r--templates/partials/head.html22
-rw-r--r--templates/partials/nav.html5
3 files changed, 0 insertions, 34 deletions
diff --git a/templates/partials/footer.html b/templates/partials/footer.html
deleted file mode 100644
index c116580..0000000
--- a/templates/partials/footer.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<footer>
- <p>Content is All Rights Reserved</p>
- <p>
- The <a href="{{ config.extra.repository_url }}">source code</a> is available
- under the <a href="https://spdx.org/licenses/MIT.html">MIT License</a>
- </p>
-</footer>
diff --git a/templates/partials/head.html b/templates/partials/head.html
deleted file mode 100644
index fa2c30d..0000000
--- a/templates/partials/head.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<head>
- <meta charset="UTF-8" />
- {% if page.title %}
- {% set title = page.title %}
- {% elif section.title %}
- {% set title = section.title %}
- {% else %}
- {% set title = config.title %}
- {% endif %}
- <title>{{ title }}</title>
- <meta name="viewport" content="width=device-width,initial-scale=1" />
- {% if page.description %}
- {% set description = page.description %}
- {% elif section.description %}
- {% set description = section.description %}
- {% else %}
- {% set description = config.description %}
- {% endif %}
- <meta name="description" content="{{ description }}" />
- <link rel="sitemap" href="sitemap.xml" />
- <link rel="stylesheet" href="/style.css" />
-</head>
diff --git a/templates/partials/nav.html b/templates/partials/nav.html
deleted file mode 100644
index bd74873..0000000
--- a/templates/partials/nav.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<nav>
- {% for link in config.extra.nav_links %}
- <div><a href="{{ link.url }}">{{ link.name }}</a></div>
- {% endfor %}
-</nav>