aboutsummaryrefslogtreecommitdiff
path: root/src/match_up/templates/index.html
blob: 23bba20f0c38a493e2b8457292a15fd317d2b243 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<html>
    <head>
        <title>{{ title }}</title>
    </head>
    <body>
        <h1>{{ title }}</h1>
    <ul>
    {% for person in people %}
        <li>{{ person.first_name }}</li>
    {% endfor %}
    </ul>
    </body>
</html>