aboutsummaryrefslogtreecommitdiffstats
path: root/templates/main/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/main/base.html')
-rw-r--r--templates/main/base.html53
1 files changed, 0 insertions, 53 deletions
diff --git a/templates/main/base.html b/templates/main/base.html
deleted file mode 100644
index bb12fc9b..00000000
--- a/templates/main/base.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- {% block head %}
- <title>Python Discord | {% block title %}{% endblock %}</title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <script src="{{ static_file('js/script.js') }}" type="application/javascript"></script>
-
- <!-- Stylesheets -->
- <link rel="shortcut icon" href="{{ static_file('favicon.ico') }}">
- <link rel="stylesheet" href="{{ static_file('css/uikit_blurple.css') }}"/>
- <link rel="stylesheet" href="{{ static_file('css/style.css') }}"/>
- <link rel="stylesheet" href="{{ static_file('css/bundled/pygments-monokai.css') }}"/>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
-
- <!-- OpenGraph metadata -->
- <meta property="og:title" content="Python Discord | {% block og_title %}{% endblock %}">
- <meta property="og:description" content="{% block og_description %}We're a large, friendly community focused around the Python programming language. Our community is open to those who wish to learn the language, as well as those looking to help others.{% endblock %}">
- <meta content="/static/logos/logo_discord.png" property="og:image">
- {% endblock %}
- {% block extra_head %}
-
- {% endblock %}
- </head>
- <body class="{% block page_classes %}{% endblock page_classes %}
- page-{{ current_page.replace(".", "-") }}
- blueprint-{{ blueprint.replace(".", "-") }}">
- {% if current_page == "main.index" %}
- <div class="uk-offcanvas-content uk-section-primary">
- {% else %}
- <div class="uk-offcanvas-content">
- {% endif %}
- {% include "main/navigation.html" %}
- {% block content %}{% endblock %}
- </div>
-
- <footer>
- <div class="uk-section uk-section-secondary uk-container-medium uk-text-meta">
- <div class="uk-text-center uk-text-meta">
- <p>
- This website uses <a href="https://python.org">Python</a> and
- <a href="http://flask.pocoo.org/">Flask</a>, and was developed collaboratively on
- <a href="https://gitlab.com/python-discord/projects/site">GitLab</a>.
- <br />
- For privacy &amp; GDPR-related info, please <a href="{{ url_for("main.about.privacy") }}">see this page</a>.
- </p>
- </div>
- </div>
- </footer>
- </body>
-</html>