Upgrade to nick_site commit f981fa57, adds alerts and inactive sidebar option
[ndcode_site.git] / projects / jst / index.html.jst
diff --git a/projects/jst/index.html.jst b/projects/jst/index.html.jst
new file mode 100644 (file)
index 0000000..1d75a21
--- /dev/null
@@ -0,0 +1,20 @@
+return async env => {
+  let breadcrumbs = await _require('/_lib/breadcrumbs.jst')
+  let navbar = await _require('/_lib/navbar.jst')
+
+  await navbar(
+    env,
+    // head
+    async _out => {},
+    // body
+    async _out => {
+      await breadcrumbs(env, _out)
+
+      p {
+        i {'Under construction.'}
+      }
+    },
+    // scripts
+    async _out => {}
+  )
+}