blob: 19e314060fe108f53f14cda6aab6dee75c45e5fc (
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
41
42
43
|
{% 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 src="http://maps.google.com/maps?file=api&v=2&key={{map_key}}" type="text/javascript"></script>
{% endblock %}
{%block bodyid%}id="map" {%endblock%}
{% block bodyevents %}onload="initialize()" onunload="GUnload()"{% endblock %}
{% block primary %}
<article>
<ul id="breadcrumbs">
<li><a href="/" title="luxagraf homepage">Home</a> →</li>
<li>Map</li>
</ul>
<aside>{% include 'includes/map_sidebar.html' %}
</aside>
<div id="map-canvas">
</div>
</article>
{% endblock %}
{% block js %}
{% include 'includes/map_entry_list.html' %}
{%endblock%}
|