aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/base.html
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-04 20:49:12 +0900
committernsfisis <nsfisis@gmail.com>2024-08-04 20:49:12 +0900
commitff959dadb1f990173b9df3105ccfc96b1c6c092e (patch)
tree4690c2aabafaedb50f86ece4900c9616d9518947 /backend/admin/templates/base.html
parentfa7755592845a44928e88d2ab78cc04425aa9024 (diff)
parentf4bae7f755ca25b2547dc98b2db2fdb255948bc5 (diff)
downloadiosdc-japan-2024-albatross-ff959dadb1f990173b9df3105ccfc96b1c6c092e.tar.gz
iosdc-japan-2024-albatross-ff959dadb1f990173b9df3105ccfc96b1c6c092e.tar.zst
iosdc-japan-2024-albatross-ff959dadb1f990173b9df3105ccfc96b1c6c092e.zip
Merge branch 'feat/admin-pages'
Diffstat (limited to 'backend/admin/templates/base.html')
-rw-r--r--backend/admin/templates/base.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/backend/admin/templates/base.html b/backend/admin/templates/base.html
new file mode 100644
index 0000000..4bcdbdd
--- /dev/null
+++ b/backend/admin/templates/base.html
@@ -0,0 +1,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>