diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-04-05 17:44:16 +0200 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-04-05 17:44:16 +0200 |
| commit | 2b264abdf62822936e3510b0f9690ba1e359a9b8 (patch) | |
| tree | a2dfaa6cfb90ff416b1665dbf863c48e726c2b92 /src/match_up/templates | |
| parent | 9ef7d95c7010351078a929f5144f5098d4142cd0 (diff) | |
Added a basic version using flask and jinja
Diffstat (limited to 'src/match_up/templates')
| -rw-r--r-- | src/match_up/templates/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/match_up/templates/index.html b/src/match_up/templates/index.html index 23bba20..e292734 100644 --- a/src/match_up/templates/index.html +++ b/src/match_up/templates/index.html @@ -1,10 +1,11 @@ <!doctype html> +<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css"> <html> <head> <title>{{ title }}</title> </head> <body> - <h1>{{ title }}</h1> + <h1>Match Up!</h1> <ul> {% for person in people %} <li>{{ person.first_name }}</li> |
