blob: effe1500bb7d37b398a525315b82f87c4e6b3c17 (
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
|
{% 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> →</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 %}
|