From cef711cce75aeb6cfba7f8e71616518394f12184 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Thu, 10 Oct 2019 13:43:05 -0400 Subject: [PATCH] venue: New page. --- pinaxcon/templates/static_pages/venue.html | 33 ++++++++++++++++++++++ pinaxcon/urls.py | 1 + 2 files changed, 34 insertions(+) create mode 100644 pinaxcon/templates/static_pages/venue.html diff --git a/pinaxcon/templates/static_pages/venue.html b/pinaxcon/templates/static_pages/venue.html new file mode 100644 index 0000000..8368986 --- /dev/null +++ b/pinaxcon/templates/static_pages/venue.html @@ -0,0 +1,33 @@ +{% extends "page_with_title_and_lede.html" %} + +{% load i18n %} +{% load markdown_deux_tags %} + +{% block head_title %}Venue{% endblock %} + +{% block heading %}Venue{% endblock %} + +{% block body_class %}home{% endblock %} + +{% block body %} + +
+

CopyleftConf Venue

+
+ +
+

CopyleftConf will be held at:

+ +
La Tricoterie
+ 158, rue Théodore Verhaegen
+ 1060 Saint-Gilles
+ Belgium
+ +
+ +
+ +

View Larger Map

+
+ +{% endblock %} diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index dc45c65..cbfb58a 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -18,6 +18,7 @@ urlpatterns = [ # about url(r"^about$", TemplateView.as_view(template_name="static_pages/about.html"), name="about"), + url(r"^about/venue$", TemplateView.as_view(template_name="static_pages/venue.html"), name="venue"), # program url(r"^program/events$", TemplateView.as_view(template_name="static_pages/program/events.html"), name="program/events"),