summaryrefslogtreecommitdiff
path: root/src/match_up/templates/index.html
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2024-04-05 16:55:07 +0200
committerKaran Jayachandra <karan.jayachandra@nxp.com>2024-04-05 16:55:07 +0200
commit9ef7d95c7010351078a929f5144f5098d4142cd0 (patch)
tree57a33fc2bd915c4e9ed727356038537a7c5c719b /src/match_up/templates/index.html
parentf48223b3d93e54cb9ed3f2174e9b6075719128bf (diff)
Added the working version in dash
Diffstat (limited to 'src/match_up/templates/index.html')
-rw-r--r--src/match_up/templates/index.html14
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