blob: 7164ce477156e04a1c12f87aa972763dd010b02d (
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
34
35
|
{# Base template, with a few basic style definitions. #}
{% load django_simple_bulma sekizai_tags 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 %}
{% render_block "css" %}
</head>
<body>
{% block content %}
{{ block.super }}
{% endblock %}
{% render_block "js" %}
</body>
</html>
|