diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-04-05 16:55:07 +0200 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-04-05 16:55:07 +0200 |
| commit | 9ef7d95c7010351078a929f5144f5098d4142cd0 (patch) | |
| tree | 57a33fc2bd915c4e9ed727356038537a7c5c719b /src/match_up/templates/index.html | |
| parent | f48223b3d93e54cb9ed3f2174e9b6075719128bf (diff) | |
Added the working version in dash
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 |
