blob: 8e71194674eb23236a69c0ae25c0e83b730bcd86 (
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
|
<!DOCTYPE html>
<html>
<head>
<title>ADMIN {{ .Title }} | iOSDC Japan 2024 Albatross.swift</title>
<link rel="icon" href="{{ .BasePath }}/favicon.svg">
<link rel="stylesheet" href="{{ .BasePath }}/admin/css/normalize.css">
<link rel="stylesheet" href="{{ .BasePath }}/admin/css/sakura.css">
</head>
<body>
<section>
<h1>ADMIN {{ .Title }}</h1>
<p>
<em>This is an admin page.</em>
</p>
<section>
<nav>
{{ block "breadcrumb" . }}{{ end }}
</nav>
</section>
<section>
{{ block "content" . }}{{ end }}
</section>
</section>
</body>
</html>
|