summaryrefslogtreecommitdiff
path: root/project/templates/index.html
blob: 4652567202473cc4aee8f27eaa7082ddb3273d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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>

{% endblock %}