blob: 3d6e828e513c71902c4c3d1f03593c00777cfa2b (
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
|
{{define "upcoming"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
{{ template "stylesheets" . }}
<title>Freitagsfoo</title>
</head>
<body>
<main role="main">
<div class="container-fluid bg-success text-white p-5">
<div class="container">
<h1 class="display-3">
<a href="/" class="text-decoration-none text-white">Freitagsfoo!</a>
</h1>
<p><a class="btn btn-primary btn-lg" href="/propose" role="button">Propose a talk »</a></p>
</div>
</div>
{{ template "upcomingTalks" . }}
</main>
</body>
</html>
{{end}}
|