Changeset - cef711cce75a
[Not reviewed]
0 1 1
Brett Smith - 4 years ago 2019-10-10 17:43:52
brettcsmith@brettcsmith.org
venue: New page.
2 files changed with 34 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/static_pages/venue.html
Show inline comments
 
new file 100644
 
{% 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 %}
pinaxcon/urls.py
Show inline comments
...
 
@@ -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"),
0 comments (0 inline, 0 general)