aboutsummaryrefslogtreecommitdiff
path: root/views/index.html
blob: 81c801fd92197a75ab166e9ee02ace7a59ae0f05 (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
26
27
28
29
30
31
32
33
34
{{ define "index" }}
<html>
        <head>
				{{ template "materialize" }}
                <title>grilist</title>
                <style>
                        body {
                                height: 100%;
								width: 100%;
                                overflow: hidden;
                        }
						
						h1 {
							font-size: 100px;
						}
						
						h1 >small {
							margin-top: -50px;
							font-size: 20%;
						}
                </style>
                <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
        </head>
        <body class="valign-wrapper center-align">
                <div class="container">
					<div class="center-align">
						<h1>grilist<small class="blue-grey-text lighten-1">#tamtam</small></h1>
						
						<a class="btn waves-effect waves-light cyan lighten-3" href="/logout">Ausloggen</a>
					</div>
                </div>
        </body>
</html>
{{ end }}