diff options
Diffstat (limited to 'src/match_up/templates/index.html')
| -rw-r--r-- | src/match_up/templates/index.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/match_up/templates/index.html b/src/match_up/templates/index.html new file mode 100644 index 0000000..23bba20 --- /dev/null +++ b/src/match_up/templates/index.html @@ -0,0 +1,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>
\ No newline at end of file |
