summaryrefslogtreecommitdiff
path: root/templates/layout.hbs
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layout.hbs')
-rw-r--r--templates/layout.hbs21
1 files changed, 19 insertions, 2 deletions
diff --git a/templates/layout.hbs b/templates/layout.hbs
index b8de618..90e5e6f 100644
--- a/templates/layout.hbs
+++ b/templates/layout.hbs
@@ -1,10 +1,27 @@
<!doctype html>
<html lang="en">
<head>
- <title>PJ {{ title }}</title>
+ <meta charset="utf8">
+ <link href="/static/default.css" rel="stylesheet" type="text/css"/>
+ <title>pj- {{ title }}</title>
</head>
<body>
- {{ ~> page }}
+ <header>
+ <h1>{{ title }}</h1>
+ </header>
+ <nav>
+ <ul>
+ <li><a href="">Navigation 1</a></li>
+ <li><a href="">Navigation 2</a></li>
+ <li><a href="">Navigation 3</a></li>
+ </ul>
+ </nav>
+ <main>
+ {{ ~> page }}
+ </main>
+ <footer>
+ <p>Footer goes here</p>
+ </footer>
</body>
</html>