blob: 5b124ded9fda91239902a1b50e9b437f84d30813 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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>
|