- Added Copying to sidebar in the running application - Added source link to comply with the AGPL
57 lines
2.0 KiB
HTML
57 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
This file is part of transport-accessibility.
|
|
Copyright (C) 2024 Janek Kiljanski, Johannes Randerath
|
|
|
|
transport-accessibility is free software: you can redistribute it and/or modify it under the terms of the
|
|
GNU General Public License as published by the Free Software Foundation, either version 3
|
|
of the License, or (at your option) any later version.
|
|
|
|
transport-accessibility is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with transport-accessibility.
|
|
If not, see <https://www.gnu.org/licenses/>.
|
|
-->
|
|
{% load static %}
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>OpenStreetMap with GTFS Toolbar</title>
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Leaflet CSS -->
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet-draw/dist/leaflet.draw.css" />
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet-routing-machine/dist/leaflet-routing-machine.css" />
|
|
|
|
<link rel="stylesheet" href="{% static 'pt_map/style/style.css'%}" />
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
<script type="text/javascript" id="cookiebanner" data-zindex="1000" src="https://cdn.jsdelivr.net/gh/dobarkod/cookie-banner@1.2.2/dist/cookiebanner.min.js"></script>
|
|
<footer>
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
Copyright (C) 2024 Janek Kiljanski, Johannes Randerath
|
|
</td>
|
|
<td></td>
|
|
<td>
|
|
This is free software. License: <a href="">AGPL</a>.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td>
|
|
Download source code
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</footer>
|
|
</body>
|
|
</html>
|