From 3754c5a595809ed2a9bf95ae5fdd94b5bd0f17cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Mart=C3=ADn?= Date: Tue, 21 May 2013 15:18:02 +0200 Subject: [PATCH] Added about page and finished base home disclaimer --- minecraftcodex/database/templates/about.html | 5 +++++ minecraftcodex/database/templates/home.html | 6 ++++++ minecraftcodex/database/templates/layout.html | 7 +++++-- minecraftcodex/database/views.py | 3 +++ minecraftcodex/herobrine/urls.py | 3 +++ 5 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 minecraftcodex/database/templates/about.html diff --git a/minecraftcodex/database/templates/about.html b/minecraftcodex/database/templates/about.html new file mode 100644 index 0000000..47206d5 --- /dev/null +++ b/minecraftcodex/database/templates/about.html @@ -0,0 +1,5 @@ +{% extends "layout.html" %} + +{% block content %} +About page +{% endblock %} diff --git a/minecraftcodex/database/templates/home.html b/minecraftcodex/database/templates/home.html index 4c6aa42..ffcb355 100644 --- a/minecraftcodex/database/templates/home.html +++ b/minecraftcodex/database/templates/home.html @@ -3,6 +3,12 @@ {% block content %}

Minecraft Codex is on alpha!

+

+ This site is under construction and very early stage of development.
+ It's public in this state so the people can see its progress over time, + and send feedback/suggestions to the staff. +

+

For more details about the project, go to the about section.

Happy minning!

{% endblock %} diff --git a/minecraftcodex/database/templates/layout.html b/minecraftcodex/database/templates/layout.html index c03c256..deebff5 100644 --- a/minecraftcodex/database/templates/layout.html +++ b/minecraftcodex/database/templates/layout.html @@ -29,6 +29,11 @@ Versions + @@ -36,7 +41,6 @@
{% block content %} - Content {% endblock %}