summaryrefslogtreecommitdiff
path: root/templates/about.html
blob: f6f9b2690e2b0dc1e278c17053f288ccda1b6c4d (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
<!DOCTYPE html>
<html lang="de">
<head>
	<title>{{ title }}</title>
	{% include 'header.html' %}
</head>
<body>

{% include 'navbar.html' %}

<div class="container">
	<p>
		NVM ist ein inoffizieller Abfahrtsmonitor für Nahverkehr in Deutschland
		und Umgebung.
		© 2021 <a href="https://finalrewind.org/me">Daniel Friesel</a>
		/ <a href="https://twitter.com/derfnull">@derfnull</a>.
		Der <a href="https://github.com/derf/nvm">Quelltext</a> steht unter
		der GNU AGPL v3 als Open Source zur Verfügung.
	</p>
</div>

{% include 'footer.html' %}

</body>
</html>