-
Notifications
You must be signed in to change notification settings - Fork 1
/
results.html
37 lines (32 loc) · 889 Bytes
/
results.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Tuftstinence</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" href="images/icon_banana.png">
<style>
h2 {
padding: 10px;
text-align: center;
}
p {
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<h2>Breakfast</h2>
{% for item in recommended_breakfast %}
<p>{{item}}</p>
{% endfor %}
<h2>Lunch</h2>
{% for item in recommended_lunch %}
<p>{{item}}</p>
{% endfor %}
<h2>Dinner</h2>
{% for item in recommended_dinner %}
<p>{{item}}</p>
{% endfor %}
</body>