diff options
Diffstat (limited to 'project/templates/index.html')
-rw-r--r-- | project/templates/index.html | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/project/templates/index.html b/project/templates/index.html index de16dbf..4652567 100644 --- a/project/templates/index.html +++ b/project/templates/index.html @@ -1,13 +1,27 @@ {% extends "base.html" %} + + {% block title %}Jedidiah Barber's Personal Site{% endblock %} + + +{% block style %} + <link href="/css/index.css" rel="stylesheet"> +{% endblock %} + + + {% block content %} - <ul class="index"> - <li><a href="/stvcount.html">Single Transferable Vote Counter</a></li> - <li><a href="/adapad.html">Adapad</a></li> - <li><a href="/grasp.html">Grasp Interpreter</a></li> - <li><a href="/thue2a.html">Thue Version 2a</a></li> - </ul> + +<ul class="index"> + <li><a href="/stvcount.html">Single Transferable Vote Counter</a></li> + <li><a href="/adapad.html">Adapad</a></li> + <li><a href="/grasp.html">Grasp Interpreter</a></li> + <li><a href="/thue2a.html">Thue Version 2a</a></li> +</ul> + {% endblock %} + + |