summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html43
1 files changed, 0 insertions, 43 deletions
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 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
- <meta charset="utf-8">
- {% block title %}
- <title>{{ config.title }}</title>
- {% endblock %}
-
- <link rel="shortcut icon" type="image/png" href="{{ config.extra.favicon }}">
- <meta name="viewport" content="width=device-width,initial-scale=1">
-
- <link id="stylesheet" rel="stylesheet" type="text/css" href="/dark.css">
-
- <script type="text/javascript" src="/js/theme.js"></script>
-
-</head>
-
-<div class="header">
- <div class="site_title">
- <p><a href="/"><img src="{{ config.base_url }}{{ config.extra.icon }}" alt="{{ config.title }}"
- width="{{ config.extra.iconsize }}" height=auto></a></p>
- <p><a href="/">&nbsp;{{ config.title }}</a></p>
- </div>
- <div class="menu">
- <!-- <a href="/tags">tags</a>
- &nbsp;--><a href="/categories">categories</a>
- </div>
-</div>
-
-<body onload="getTheme()">
- <section class="section">
- <div class="container">
- {% block content %} {% endblock %}
- </div>
- </section>
-</body>
-
-<div class="footer">
- &emsp;&copy; {{ config.extra.author }}
-</div>
-
-</html>