forked from compsocialscience/summer-institute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
38 lines (29 loc) · 769 Bytes
/
home.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
{% include setup_data.html %}
<!DOCTYPE html>
<html lang="en" class="year_{{ year }}">
<head>
{% include header.html %}
</head>
<body>
{% include navbar.html %}
{% include hero.html %}
{% include promo_three_column.html %}
<section class="bg-secondary text-white py-5 mt-5">
<div class="container">
{% include promo_program_overview.html data=content %}
</div>
</section>
<section class="bg-secondary pb-5">
<div class="container">
<div class="row">
<div class="col-sm-12">
{% include map.html %}
</div>
</div>
</section>
<section>
{% include sponsors.html %}
</section>
{% include footer.html %}
</body>
</html>