diff options
author | 2018-02-07 10:13:36 +0000 | |
---|---|---|
committer | 2018-02-07 10:13:36 +0000 | |
commit | 7bc5e8bee74bb0a8b879a38f69748d40558a5e0b (patch) | |
tree | 2a12cbf3363fcf2989bccdf01b655f35c52f792f /templates/base.html | |
parent | Merge pull request #1 from discord-python/feature/gunicorn-config (diff) |
Static files; basic templates
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 00000000..9e00af20 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + {% block head %} + <title>Python | {% block title %}{% endblock %}</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script> + <script defer src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.39/js/uikit.min.js"></script> + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.39/css/uikit.min.css" /> + {% endblock %} +</head> +<body> +{% include "navigation.html" %} +{% block content %}{% endblock %} +</body> +</html>
\ No newline at end of file |