aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-08-13 22:46:17 +0200
committerGravatar Johannes Christ <[email protected]>2018-08-13 22:46:17 +0200
commit9f9bf1b9afef06d9a53baf635de6046444d56cdd (patch)
tree3b8588ee223ba86c515adc900d9eec74fd92d2d2 /home
parentAdd base & navbar templates. (diff)
Add a basic index page template.
Diffstat (limited to 'home')
-rw-r--r--home/templates/home/index.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/home/templates/home/index.html b/home/templates/home/index.html
new file mode 100644
index 00000000..cc99763b
--- /dev/null
+++ b/home/templates/home/index.html
@@ -0,0 +1,42 @@
+{% extends 'navbar.html' %}
+{% load static %}
+
+{% block page_title %}Home{% endblock %}
+{% block head %}
+ {{ block.super }}
+ <link rel="stylesheet" href="{% static 'home/css/index.css' %}">
+{% endblock %}
+{% block body %}
+ {{ block.super }}
+ <div class="overview has-text-centered container">
+ <h1 class="has-text-white has-text-weight-semibold is-size-2">Python Discord</h1>
+ <p class="has-text-grey-lighter is-size-7">
+ The official Discord server of
+ <a class="has-text-white" href="https://reddit.com/r/Python">r/Python</a>
+ </p>
+
+ <p class="has-text-light is-size-4">
+ We're a large, friendly community focused around the Python programming language, open to those
+ who wish to learn the language or improve their skills, as well as those looking to help others.
+ </p>
+
+ <p class="has-text-light is-size-6">
+ We organise regular community events and have a dedicated staff of talented Python
+ developers available to assist around the clock. Whether you're looking to learn the
+ language or working on a complex project, we've got someone who can help you if you get stuck.
+ </p>
+
+ <img src="https://discordapp.com/api/guilds/267624335836053506/embed.png?style=banner3">
+
+ <p class="divider has-text-grey-light">
+ ------------------------------------------------------------------------------------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;O&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-------------------------------------------------------------------------------------------------------------
+ </p>
+
+ <p class="has-text-grey-lighter is-size-7">
+ Please note: this site is under construction. What you see now may be vastly different
+ from the final project state. Feel free to chat to us on Discord if you're curious!
+ </p>
+ </div>
+{% endblock %}
+
+<!-- vim: set ft=htmldjango: -->