diff --git a/pinaxcon/templates/static_pages/about/venue.html b/pinaxcon/templates/static_pages/about/venue.html new file mode 100644 index 0000000000000000000000000000000000000000..5371560e5d315f14dc0339e0368b0cec55174969 --- /dev/null +++ b/pinaxcon/templates/static_pages/about/venue.html @@ -0,0 +1,32 @@ +{% extends "site_base_home.html" %} + +{% block head_title %}Venue{% endblock %} + +{% block body_class %}home{% endblock %} + +{% block body %} + +
+

CopyleftConf Venue

+
+ +
+

CopyleftConf will be held at:

+ +
DigitYser
+ Boulevard d’Anvers 40
+ 1000 Bruxelles
+ Belgium
+ +

DigitYser is located just a few minutes’ walk from Grande Place. We’ll + have coffee throughout the day. We’ll also be bringing in lunch for everyone + who pre-registers (coming soon!).

+ +
+ +
+ +

View Larger Map

+
+ +{% endblock %} diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 86d1fabd90c2a1dbca7ada72225bab30183db129..8e2eb7f91e0f346e3fd0faa2091cc609677f1aad 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/about/venue.html"), name="about/venue"), # program url(r"^program/events$", TemplateView.as_view(template_name="static_pages/program/events.html"), name="program/events"),