-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (101 loc) · 3.35 KB
/
index.html
File metadata and controls
125 lines (101 loc) · 3.35 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
---
layout: default
---
<section id="hero">
{% for slide in site.slides|order:'position' %}
<div id="slide-{{forloop.index}}" class="slide slide-full" data-color="{{ slide.color }}" data-image="{{slide.image}}">
<div class="overlay"></div>
<div class="bg-img"></div>
<div class="card card-block" style="background-image: url('{{slide.textureImage}}')">
<div class="">
<h1>{{ slide.title}}</h1>
{{ slide.content }}
</div>
</div>
{% if slide.photoCredit|length %}
<div class="photo-credit">
Photo: {{ slide.photoCredit }}
</div>
{% endif %}
</div>
{% endfor %}
<section>
<div id="main-content">
<section id="partners" class="section-full js-section" data-title="Partners">
<div class="container">
<ul class="media-list">
{% for partner in site.partners %}
<li class="media">
<div class="media-left media-middle">
<a href="{{ partner.link }}" target="_blank">
<img src="{{partner.image}}" class="img-responsive" alt="{{partner.fullName}}"/>
</a>
</div>
<div class="media-body media-middle">
<a href="{{ partner.link }}" target="_blank">
{{ partner.content }}
</a>
</div>
</li>
{% endfor %}
</ul>
</div>
</section>
<section id="projects" class="section-full js-section" data-title="Projects">
<div class="container">
<ul class="media-list row">
{% for project in site.projects %}
<li class="media col-lg-6">
<a href="{{ project.link }}" target="_blank">
{% if project.image|length %}
<div class="media-left">
<img src="{{project.image}}" width="180px" alt="{{ project.title}}"/>
</div>
{% endif %}
<div class="media-body">
<h6>{{ project.partner}}</h6>
<h4>{{ project.title}}</h4>
{{ project.content }}
</div>
</a>
</li>
{% endfor %}
</ul>
</div>
</section>
<section id="board" class="section-full js-section" data-title="Advisory Board">
<div class="container">
<div class="lead">{{ site.collections[0].intro|markdownify }}</div>
<div class="row">
{% for person in site.board %}
<div class="col-lg-4 col-md-6">
<div class="person">
<h6>{{person.boardPosition}}</h6>
<a href="{{ person.link }}" target="_blank">
<h4>{{ person.title}}</h4>
</a>
{{ person.content }}
</div>
</div>
{% endfor %}
</div>
<h6>Advisory Committee</h6>
<p class="lead">{{site.collections[0].advisoryCommittee}}</p>
<p class="lead"><i>{{site.collections[0].comingSoon}}</i></p>
</div>
</section>
<!-- <section id="news" class="section-full">
<div class="container">
<ul class="list-unstyled row">
{% for post in site.posts %}
<li class="col-md-6">
<a href="{{ post.link }}" target="_blank">
<h6>{{ post.date | date: "%B %-d, %Y" }} — <span>{{ post.partner}}</span></h6>
<h3>{{ post.title}}</h3>
</a>
</li>
{% endfor %}
</ul>
</div>
</section> -->
</div>