Changeset - e234c69692b0
[Not reviewed]
0 1 1
Brett Smith - 5 years ago 2018-12-09 16:37:20
brettcsmith@brettcsmith.org
about: New venue page.
2 files changed with 33 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/static_pages/about/venue.html
Show inline comments
 
new file 100644
 
{% extends "site_base_home.html" %}
 

	
 
{% block head_title %}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://digityser.org/">DigitYser</a><br>
 
    Boulevard d&rsquo;Anvers 40<br>
 
    1000 Bruxelles<br>
 
    Belgium</address>
 

	
 
  <p>DigitYser is located just a few minutes&rsquo; walk from Grande Place.  We&rsquo;ll
 
    have coffee throughout the day. We&rsquo;ll also be bringing in lunch for everyone
 
    who pre-registers (coming soon!).</p>
 

	
 
  <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.344406127929688%2C50.85490188165717%2C4.355896711349488%2C50.859859431296265&amp;layer=mapnik&amp;marker=50.857380722355124%2C4.350151419639587" style="border: 1px solid black"></iframe>
 
  </div>
 

	
 
  <p class="text-center"><a href="https://www.openstreetmap.org/?mlat=50.85738&amp;mlon=4.35015#map=17/50.85738/4.35015">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/about/venue.html"), name="about/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)