-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathbase.tmpl.html
43 lines (36 loc) · 1.22 KB
/
base.tmpl.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{.EventName}}</title>
<link rel="stylesheet" href="/assets/css/amigo.css">
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Material+Icons+Outlined" rel="stylesheet">
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
{{ if .Notification.LoggedInUsers }}
{{ if .Team }}
{{ template "notification" . }}
{{ end }}
{{ else if .Notification.Message }}
{{ template "notification" . }}
{{ end }}
{{ template "navbar" . }}
<main id="content">
{{ template "content" . }}
</main>
<footer class="footer">
<div class="container text-center">
<p style="margin:0px; font-size: x-large; color: #68737d">
This platform, <a href="https://github.com/aau-network-security/haaukins">Haaukins</a>, Powered by Aalborg University
</p>
</div>
</footer>
<script defer src="/assets/js/fa.js"></script>
<script defer src="/assets/js/amigo.js"></script>
<script defer src="/assets/js/app.js"></script>
<script defer src="/assets/js/vendors.js"></script>
</body>
</html>