From 9f9bf1b9afef06d9a53baf635de6046444d56cdd Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Mon, 13 Aug 2018 22:46:17 +0200 Subject: Add a basic index page template. --- home/templates/home/index.html | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 home/templates/home/index.html (limited to 'home/templates') 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 }} + +{% endblock %} +{% block body %} + {{ block.super }} +
+

Python Discord

+

+ The official Discord server of + r/Python +

+ +

+ 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. +

+ +

+ 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. +

+ + + +

+ ------------------------------------------------------------------------------------------------------------           O          ------------------------------------------------------------------------------------------------------------- +

+ +

+ 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! +

+
+{% endblock %} + + -- cgit v1.2.3