team-3/src/c3nav/site/templates/site/map.html
2017-10-29 17:03:02 +01:00

61 lines
2.7 KiB
HTML

{% load static %}
{% load compress %}
{% load i18n %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>c3nav</title>
{% compress css %}
<link href="{% static 'fonts/fonts.css' %}" rel="stylesheet">
<link href="{% static 'normalize/normalize.css' %}" rel="stylesheet">
<link href="{% static 'milligram/milligram.css' %}" rel="stylesheet">
<link href="{% static 'leaflet/leaflet.css' %}" rel="stylesheet">
<link href="{% static 'site/css/c3nav.css' %}" rel="stylesheet">
{% endcompress %}
</head>
<body>
<header>
<h1>c3nav</h1>
</header>
<main class="map">
<section id="map" data-bounds="{{ bounds }}" data-levels="{{ levels }}"></section>
<section id="sidebar">
<section id="search">
<div class="location locationinput empty" id="origin-input">
<input type="text" autocomplete="off" spellcheck="false" placeholder="{% trans 'Search any location…' %}">
<small></small>
<button class="button-clear locate"></button>
<button class="button-clear clear"></button>
</div>
<div class="location locationinput empty" id="destination-input">
<input type="text" autocomplete="off" spellcheck="false" placeholder="{% trans 'Search any location…' %}">
<small></small>
<button class="button-clear locate"></button>
<button class="button-clear clear"></button>
</div>
<div class="buttons" id="location-buttons">
<button class="button-clear details">Details</button>
<button class="button-clear share">Share</button>
<button class="button-clear route">Route</button>
</div>
<div class="buttons" id="route-buttons">
<button class="button-clear swap">swap</button>
<button class="button-clear options">Options</button>
</div>
</section>
<div id="resultswrapper">
<section id="autocomplete"></section>
</div>
</section>
</main>
{% compress js %}
<script type="text/javascript" src="{% static 'jquery/jquery.js' %}"></script>
<script type="text/javascript" src="{% static 'leaflet/leaflet.js' %}"></script>
<script type="text/javascript" src="{% static 'site/js/c3nav.js' %}"></script>
{% endcompress %}
</body>
</html>