summaryrefslogtreecommitdiff
path: root/project/templates
diff options
context:
space:
mode:
Diffstat (limited to 'project/templates')
-rw-r--r--project/templates/base.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/project/templates/base.html b/project/templates/base.html
index d8d7322..2e5a549 100644
--- a/project/templates/base.html
+++ b/project/templates/base.html
@@ -1,22 +1,22 @@
<!DOCTYPE html>
<html lang="en">
-<meta charset="utf-8">
<head>
+ <meta charset="utf-8">
<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>
+ <nav>
+ <ul>
+ <li><a href="/">Index</a></li>
+ <!--<li><a href="/about.html">About</a></li>-->
<li><a href="/git.html">Git</a></li>
</ul>
- </div>
+ </nav>
<hr>
- <div class="content">
+ <article>
{% block content %}
{% endblock %}
- </div>
+ </article>
</body>
</html>