summaryrefslogtreecommitdiff
path: root/templates/archives/map.html
blob: 0a002b9b0b7d54849a235e0b4dc7a38ba9c412f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{% 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 %}<section id="page-header">
    <nav id="page-nav">
        <ul 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>
    </nav>
    </section>
    <article>
        <div id="map-canvas">
        </div>
        <aside>{% include 'includes/map_sidebar.html' %}
        </aside>
    </article>
{% endblock %}