diff options
| author | 2019-04-07 19:39:52 +0200 | |
|---|---|---|
| committer | 2019-04-07 19:39:52 +0200 | |
| commit | 7e9133d1ac2b4cb82a9ee0dead37f342933ce8d4 (patch) | |
| tree | 787f45a1ba5e1f16b9cd7d9e8cdf660573914151 /pysite/templates/base.html | |
| parent | Set `harakiri = 30`. (diff) | |
| parent | Address review by @jchristgit (diff) | |
Merge pull request #198 from gdude2002/django+176/project-layout
[Fixes #158, #160, #176, #193] Project layout changes
Diffstat (limited to 'pysite/templates/base.html')
| -rw-r--r-- | pysite/templates/base.html | 19 | 
1 files changed, 0 insertions, 19 deletions
diff --git a/pysite/templates/base.html b/pysite/templates/base.html deleted file mode 100644 index f8a24962..00000000 --- a/pysite/templates/base.html +++ /dev/null @@ -1,19 +0,0 @@ -{# 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: -->  |