diff options
| author | 2019-04-10 15:19:10 +0100 | |
|---|---|---|
| committer | 2019-04-10 15:19:10 +0100 | |
| commit | 96715aae7ced58fc80f2945e7da3d78006b3098f (patch) | |
| tree | 6a4f59083221cc1c03fa4a173052b6e5d5954e26 /pydis_site/templates/base.html | |
| parent | Pushing before work is over (diff) | |
| parent | Merge pull request #203 from gdude2002/django+base-templates (diff) | |
Merge branch 'django' into django+200/wiki
# Conflicts:
# pydis_site/apps/home/urls.py
Diffstat (limited to 'pydis_site/templates/base.html')
| -rw-r--r-- | pydis_site/templates/base.html | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/pydis_site/templates/base.html b/pydis_site/templates/base.html deleted file mode 100644 index 1dcdfdc4..00000000 --- a/pydis_site/templates/base.html +++ /dev/null @@ -1,22 +0,0 @@ -{# Base template, with a few basic style definitions. #} -{% load django_simple_bulma %} -{% 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 %}"> - - {% bulma %} - {% font_awesome %} - {% block head %}{% endblock %} -</head> -<body> - {% block body %} - {% endblock %} -</body> - - -<!-- vim: set ft=htmldjango: --> |