aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/base.html
blob: 4bcdbdd59338b8b6814010cf10ca30301918570c (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="/favicon.svg">
  <link rel="stylesheet" href="/admin/css/normalize.css">
  <link rel="stylesheet" href="/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>