venue: New page.

This commit is contained in:
Brett Smith 2019-10-10 13:43:05 -04:00
parent 5dfce5cb8a
commit cef711cce7
2 changed files with 34 additions and 0 deletions

View file

@ -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 %}
<div class="chunkfive tight-headings text-center" style="padding: 1.5em;">
<h2>CopyleftConf Venue</h2>
</div>
<div class="center-block" style="max-width: 50em;">
<p>CopyleftConf will be held at:</p>
<address><a href="https://www.tricoterie.be/fr/">La Tricoterie</a><br>
158, rue Théodore Verhaegen<br>
1060 Saint-Gilles<br>
Belgium</address>
<div class="embed-responsive embed-responsive-4by3">
<iframe class="embed-responsive-item" width="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.openstreetmap.org/export/embed.html?bbox=4.332658052444459%2C50.82791734439863%2C4.340586662292481%2C50.83243730909242&amp;layer=mapnik" style="border: 1px solid black"></iframe>
</div>
<p class="text-center"><a href="https://www.openstreetmap.org/#map=17/50.83018/4.33662&amp;layers=N">View Larger Map</a></p>
</div>
{% endblock %}

View file

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