summaryrefslogtreecommitdiff
path: root/templates/not_found.html.ep
blob: 98bb664a1f82cb8fa66c3c9d323edf431e6c5a3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
	<title>vrr-infoscreen</title>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	% my $av = 'v1'; # asset version
	%= stylesheet "/static/${av}/css/main.css"
</head>
<body>

<div class="container">
<div class="error">
<strong>404 Not Found:</strong>
Die aufgerufene URL existiert nicht und ist keine gültige Abbildung auf einen
Haltestellennamen.
<a href="/">Zurück zur Hauptseite</a>
</div> <!-- error -->
</div> <!-- container -->
</body>
</html>