aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/base.html
blob: 08c7dc549e4dc21864c04caf7c7e288e03d65a0d (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 }} | PHPerKaigi 2025 Albatross</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>