aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/templates/base.html
blob: f8a2496269201e454427da88c0ac8317e98ff3ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{# Base template, with a few basic style definitions. #}
{% 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 %}">
  <link rel="stylesheet" href="{% static 'css/bulma.css' %}">
  {% block head %}{% endblock %}
</head>
<body>
  {% block body %}
  {% endblock %}
</body>


<!-- vim: set ft=htmldjango: -->