aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/base/base.html
blob: d7e764a20e79158ef283a4ecf05271aaa6bd4672 (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
36
37
38
39
40
41
42
43
44
{# Base template, with a few basic style definitions. #}
{% load django_simple_bulma %}
{% load sekizai_tags %}
{% 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"
  >

  <link rel="stylesheet" href="{% static "css/base/base.css" %}">
  {% block head %}{% endblock %}

  {% render_block "css" %}
</head>
<body class="site">

<main class="site-content">
  {% block content %}
    {{ block.super }}
  {% endblock %}
</main>

{% block site_footer %}
  {% include "base/footer.html" %}
{% endblock %}

{% render_block "js" %}
</body>
</html>