forked from compsocialscience/summer-institute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
year_home.html
51 lines (46 loc) · 1.68 KB
/
year_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
39
40
41
42
43
44
45
46
47
48
49
50
51
{% assign urlparts = page.url | split: "/" %}
{% assign year = urlparts[1] %}
<!DOCTYPE html>
<html lang="en" class="year_{{ year }}">
<head>
{% include header.html %}
</head>
<body>
{% include navbar.html %}
<div class="hero">
<img src="{{ site.data[year].hero.image.url | prepend: site.baseurl }}" class="img-responsive center-block" title="{{ site.data[year].hero.image.title }}" alt="{{ site.data[year].hero.image.alt }}">
<div class="hero-logo">
<img src="{{ site.data[year].hero.large_image.url | prepend: site.baseurl }}" class="img-responsive center-block" title="{{ site.data[year].hero.large_image.title }}" alt="{{ site.data[year].hero.large_image.alt }}">
</div>
<div class="hero-overlay">
<h1>{{ site.data[year].hero.header_1 }}</h1>
<h2>{{ site.data[year].hero.header_2 }}</h2>
</div>
<h3>{{ site.data[year].hero.header_3 }}</h3>
</div>
<div class="introduction container">
{{ content }}
</div>
<a id="people"></a>
<div class="people">
<div class="container">
{% include faculty.html %}
{% include speakers.html %}
{% include teaching_assistants.html %}
{% include participants.html %}
</div>
</div>
<div class="container">
{% capture pre_arrival %}{% include {{ year }}/pre_arrival.md %}{% endcapture %}
{{ pre_arrival | markdownify }}
</div>
{% include schedule.html data_key="schedule" title="Schedule and materials" %}
<a id="live_stream"></a>
<div class="streaming">
<div class="container">
{% include live_stream.html %}
</div>
</div>
{% include footer.html %}
</body>
</html>