summaryrefslogtreecommitdiff
path: root/design/templates/archives/map.html
diff options
context:
space:
mode:
Diffstat (limited to 'design/templates/archives/map.html')
-rw-r--r--design/templates/archives/map.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/design/templates/archives/map.html b/design/templates/archives/map.html
new file mode 100644
index 0000000..effe150
--- /dev/null
+++ b/design/templates/archives/map.html
@@ -0,0 +1,35 @@
+{% extends 'base.html' %}
+{% load typogrify %}
+{% load truncateletters %}
+{% load slugify_under %}
+
+{% block pagetitle %}Luxagraf | Map and Trips{% endblock %}
+{% block metadescription %}Browse luxagraf by map, see trip routes and discover essays and dispatches from around the world{% endblock %}
+
+{#==============================================
+Google Maps code
+==============================================#}
+{% block extrahead %}
+
+<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
+<script type="text/javascript" src="{{MEDIA_URL}}js/mainmap.js"></script>
+
+
+{% endblock %}
+{%block bodyid%}id="map" {%endblock%}
+{% block bodyevents %}onload="initialize()"{% endblock %}
+
+
+
+
+
+{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
+ <li><a href="/" itemprop="url" title="luxagraf homepage"><span itemprop="title">Home</span></a> &rarr;</li>
+ <li>Map</li>
+ </ul>
+ <section>
+ <h1 class="hide">Browse luxagraf by map</h1>
+ <div id="map-canvas"></div>
+ {% include 'includes/map_sidebar.html' %}
+ </section>
+{% endblock %}