summaryrefslogtreecommitdiff
path: root/.templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to '.templates/base.html')
-rw-r--r--.templates/base.html66
1 files changed, 0 insertions, 66 deletions
diff --git a/.templates/base.html b/.templates/base.html
deleted file mode 100644
index 6ce453d..0000000
--- a/.templates/base.html
+++ /dev/null
@@ -1,66 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>
- {% block title_prefix -%}
- {% if 'wiki-name' in config %}{{ config['wiki-name']|e }} » {% endif %}
- {%- endblock %}
- {% block title -%}
- {{ title }}
- {%- endblock %}
- </title>
-
- <link
- rel='stylesheet'
- type='text/css'
- href='//fonts.googleapis.com/css?family=Buenard:400,700&amp;subset=latin,latin-ext'>
- <link
- rel="stylesheet"
- type="text/css"
- href="{{ make_relative('/media/css/reset.css') }}">
- <link
- rel="stylesheet"
- type="text/css"
- href="{{ make_relative('/media/css/grimoire.css') }}">
- <link
- rel="stylesheet"
- type="text/css"
- href="{{ make_relative('/media/css/codehilite.css') }}">
-</head>
-<body>
-
-<div id="shell">
- {% if crumbs %}
- <ol id="breadcrumbs">
- {% for name, href in crumbs %}
- <li class="crumb-{{ loop.index0 }} {% if loop.last %}last{% else %}not-last{% endif %}">
- {% if not href %}
- {{ name|e }}
- {% else %}
- <a href="{{ make_relative(href)|e }}">{{ name|e }}</a>
- {% endif %}
- </li>
- {% endfor %}
- </ol>
- {% endif %}
-
- {% block content %}
- {% endblock %}
-
- {% block footer %}
- <div id="footer">
- <p>Questions? Comments? Feedback? <a href="mailto:owen+blog@grimoire.ca">Email me</a>!</p>
- <p>
- {% if 'wiki-name' in config %}
- {{ config['wiki-name']|e }} —
- {% endif %}
- Powered by <a href="https://github.com/zacharyvoase/markdoc">Markdoc</a>.
- {% block scm_info %}
- <a href="https://github.org/grimoire-ca/bliki">See it on Github</a>.
- {% endblock %}
- </p>
- </div>
- {% endblock %}
-</div>
-</body>
-</html>