-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmessage.twig
58 lines (51 loc) · 1.96 KB
/
message.twig
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/favicon.ico">
<title>{{ corp }}</title>
<!-- Bootstrap core CSS -->
<link href="/assets/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
<h5 class="my-0 mr-md-auto font-weight-normal">{{ corp }}</h5>
<nav class="my-2 my-md-0 mr-md-3">
<a class="p-2 text-dark" href="/">Home</a>
<a class="p-2 text-dark" href="/upload">Upload</a>
<a class="p-2 text-dark" href="/color">Color</a>
<a class="p-2 text-dark" href="/url">Url</a>
</nav>
</div>
<div class="container">
<div class="alert alert-{{ type }}" role="alert">
{{ message }}
</div>
<footer class="pt-4 my-md-5 pt-md-5 border-top">
<div class="row">
<div class="col-12 col-md">
<small class="d-block mb-3 text-muted">© {{ year }}</small>
</div>
<div class="col-6 col-md">
<h5>Other</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="https://abbts.ch/">ABB Technikerschule</a></li>
<li><a class="text-muted" href="https://abbts.ch/Bildungsgaenge/Informatik-HF">Informatik HF (IS
3.1)</a></li>
</ul>
</div>
</div>
</footer>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="/assets/js/jquery.js"></script>
<script src="/assets/js/popper.js"></script>
<script src="/assets/js/bootstrap.min.js"></script>
</body>
</html>