aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/templates/base.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-05 18:24:32 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-05 18:24:32 +0100
commitab8b798547e82ca79882ba28b1920077c803425f (patch)
treeb28a9005d05dfd2c9da62351671bf2aa6e37f7dc /pysite/templates/base.html
parent[#158 #160] Automatically run collectstatic in containers/setup script (diff)
pysite -> pydis_site
Diffstat (limited to 'pysite/templates/base.html')
-rw-r--r--pysite/templates/base.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/pysite/templates/base.html b/pysite/templates/base.html
deleted file mode 100644
index 1dcdfdc4..00000000
--- a/pysite/templates/base.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{# Base template, with a few basic style definitions. #}
-{% load django_simple_bulma %}
-{% load static %}
-
-<!DOCTYPE html>
-<head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
- <title>Python Discord | {% block page_title %}Website{% endblock %}</title>
- <meta name="description" content="{% block page_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 %}">
-
- {% bulma %}
- {% font_awesome %}
- {% block head %}{% endblock %}
-</head>
-<body>
- {% block body %}
- {% endblock %}
-</body>
-
-
-<!-- vim: set ft=htmldjango: -->