diff options
author | Jed Barber <jjbarber@y7mail.com> | 2017-01-01 15:00:53 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2017-01-01 15:00:53 +1100 |
commit | 4e7fdd57cbf8f60f674ba48fd04c80ad59a20579 (patch) | |
tree | 93d4ba886963ba10a8fbf9f24888696a6b8fd15c /project/templates/base.html | |
parent | 3daacbded8cac1cad5bab6a593e5f021e4e01ca7 (diff) |
Base template tweaked, old Grasp/Thue articles added from previous website efforts
Diffstat (limited to 'project/templates/base.html')
-rw-r--r-- | project/templates/base.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/project/templates/base.html b/project/templates/base.html index 2e5a549..7a215a4 100644 --- a/project/templates/base.html +++ b/project/templates/base.html @@ -2,14 +2,16 @@ <html lang="en"> <head> <meta charset="utf-8"> - <title>Jed Barber - {% block title %}{% endblock %}</title> + <title>{% block title %}{% endblock %}</title> <link href="/css/default.css" rel="stylesheet"> </head> <body> + <h2>Jedidiah Barber's Personal Site</h2> + <hr> <nav> <ul> <li><a href="/">Index</a></li> - <!--<li><a href="/about.html">About</a></li>--> + <li><a href="/about.html">About</a></li> <li><a href="/git.html">Git</a></li> </ul> </nav> @@ -20,3 +22,4 @@ </article> </body> </html> + |