aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/base/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'pydis_site/templates/base/base.html')
-rw-r--r--pydis_site/templates/base/base.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/pydis_site/templates/base/base.html b/pydis_site/templates/base/base.html
new file mode 100644
index 00000000..5b124ded
--- /dev/null
+++ b/pydis_site/templates/base/base.html
@@ -0,0 +1,33 @@
+{# Base template, with a few basic style definitions. #}
+{% load django_simple_bulma %}
+{% load static %}
+
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
+ <meta name="description"
+ content="{% block meta-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 %}">
+
+ <title>Python Discord | {% block title %}Website{% endblock %}</title>
+
+ {% bulma %}
+
+ {# Font-awesome here is defined explicitly so that we can have Pro #}
+ <link rel="stylesheet"
+ href="https://pro.fontawesome.com/releases/v5.7.2/css/all.css"
+ integrity="sha384-6jHF7Z3XI3fF4XZixAuSu0gGKrXwoX/w3uFPxC56OtjChio7wtTGJWRW53Nhx6Ev"
+ crossorigin="anonymous"
+ >
+
+ {% block head %}{% endblock %}
+</head>
+<body>
+
+{% block content %}
+ {{ block.super }}
+{% endblock %}
+
+</body>
+</html>