aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-07 10:13:36 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-07 10:13:36 +0000
commit7bc5e8bee74bb0a8b879a38f69748d40558a5e0b (patch)
tree2a12cbf3363fcf2989bccdf01b655f35c52f792f /templates/index.html
parentMerge pull request #1 from discord-python/feature/gunicorn-config (diff)
Static files; basic templates
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html19
1 files changed, 9 insertions, 10 deletions
diff --git a/templates/index.html b/templates/index.html
index 07bd4541..418347d2 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,10 +1,9 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Python | Home</title>
-</head>
-<body>
-<p>Coming soon:tm:</p>
-</body>
-</html> \ No newline at end of file
+{% extends "base.html" %}
+{% block title %}Home{% endblock %}
+{% block content %}
+ <div class="uk-container uk-section">
+ <h1 class="uk-title uk-text-center">
+ Coming soon :tm:
+ </h1>
+ </div>
+{% endblock %} \ No newline at end of file