summaryrefslogtreecommitdiff
path: root/project/templates/base.html
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-12-30 22:42:39 +1100
committerJed Barber <jjbarber@y7mail.com>2016-12-30 22:42:39 +1100
commit1ded97cca520f8cddf0f61dad76298243156639f (patch)
tree70f12def25048a664fc84cde64c173195b638d08 /project/templates/base.html
Initial commit
Diffstat (limited to 'project/templates/base.html')
-rw-r--r--project/templates/base.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/project/templates/base.html b/project/templates/base.html
new file mode 100644
index 0000000..d8d7322
--- /dev/null
+++ b/project/templates/base.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="en">
+<meta charset="utf-8">
+<head>
+ <title>Jed Barber - {% block title %}{% endblock %}</title>
+ <link href="/css/default.css" rel="stylesheet">
+</head>
+<body>
+ <div class="navbar">
+ <ul class="nav">
+ <li><a href="/">Home</a></li>
+ <li><a href="/about.html">About</a></li>
+ <li><a href="/git.html">Git</a></li>
+ </ul>
+ </div>
+ <hr>
+ <div class="content">
+ {% block content %}
+ {% endblock %}
+ </div>
+</body>
+</html>