summaryrefslogtreecommitdiff
path: root/src/match_up/templates/index.html
blob: e29273400107799a32ce712db5615ec160f79fe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<html>
    <head>
        <title>{{ title }}</title>
    </head>
    <body>
        <h1>Match Up!</h1>
    <ul>
    {% for person in people %}
        <li>{{ person.first_name }}</li>
    {% endfor %}
    </ul>
    </body>
</html>