summaryrefslogtreecommitdiff
path: root/templates/not_found.html.ep
blob: 411080acc3d208611a169c25bcfc0f5cedc04bc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="row">
	<div class="col s12">
		<div class="card caution-color">
			<div class="card-content white-text">
				<span class="card-title">404 Not Found</span>
				% if (my $m = stash('message')) {
					<p><%= $m %></p>
				% }
				% else {
					<p>Diese Seite gibt es hier nicht.</p>
				% }
			</div>
		</div>
	</div>
</div>