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>