aboutsummaryrefslogtreecommitdiffstats
path: root/site-src/themes/hack/templates/base.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'site-src/themes/hack/templates/base.tmpl')
-rw-r--r--site-src/themes/hack/templates/base.tmpl38
1 files changed, 0 insertions, 38 deletions
diff --git a/site-src/themes/hack/templates/base.tmpl b/site-src/themes/hack/templates/base.tmpl
deleted file mode 100644
index b0f2c4e..0000000
--- a/site-src/themes/hack/templates/base.tmpl
+++ /dev/null
@@ -1,38 +0,0 @@
-## -*- coding: utf-8 -*-
-<%namespace name="base" file="base_helper.tmpl" import="*"/>
-<%namespace name="header" file="base_header.tmpl" import="*"/>
-<%namespace name="footer" file="base_footer.tmpl" import="*"/>
-<%namespace name="annotations" file="annotation_helper.tmpl"/>
-${set_locale(lang)}
-${base.html_headstart()}
-<%block name="extra_head">
-### Leave this block alone.
-</%block>
-${template_hooks['extra_head']()}
-</head>
-% if not HACK_VARIANT:
- <body class="hack">
-% elif HACK_VARIANT == 'dark':
- <body class="hack dark">
-% elif HACK_VARIANT == 'dark-grey':
- <body class="hack dark-grey">
-% elif HACK_VARIANT == 'solarized-dark':
- <body class="hack solarized-dark">
-% elif HACK_VARIANT == 'standard':
- <body class="hack standard">
-% endif
-
-<a href="#content" class="sr-only sr-only-focusable">${messages("Skip to main content")}</a>
- <div id="container">
- ${header.html_header()}
- <main id="content">
- <%block name="content"></%block>
- </main>
- ${footer.html_footer()}
- </div>
- ${base.late_load_js()}
- <%block name="extra_js"></%block>
- ${body_end}
- ${template_hooks['body_end']()}
-</body>
-</html>