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"),