-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 958 Bytes
/
index.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
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>No poverty</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<h1>Welcome to a Poverty Free World!!!</h1>
<h2>Loans section</h2>
<ul>
{% for loan in loans %}
<li>{{ loan.lender }}: ${{ loan.amount }} for {{ loan.purpose }}</li>
{% endfor %}
</ul>
<h2>Donations section</h2>
<ul>
{% for donation in donations %}
<li>{{ donation.donor }} donated ${{ donation.amount }}</li>
{% endfor %}
</ul>
<h2>Free Courses</h2>
<ul>
{% for course in courses %}
<li>{{ course.title }} - {{ course.description }}</li>
{% endfor %}
</ul>
<h2>Job Listings</h2>
<ul>
{% for job in jobs %}
<li>{{ job.title }} - {{ job.description }}</li>
{% endfor %}
</ul>
</body>
</html>