forked from homologus/crowdsourcing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
29 lines (27 loc) · 1.11 KB
/
about.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
---
title: About
description: We've built an amazing team of young scientists.
image: https://static1.squarespace.com/static/507b480bc4aa45dec4ef6990/t/51d91f83e4b05a25fc1fc0f7/1373183876513/Red+Salmonberries?format=1500w
---
<section class="hero" style="background-image: url({% include relative-src.html src=page.image %})">
<div class="inner-hero text-container">
<div class="hero-text-container">
<h1 class="editable">Our Team</h1>
<p class="subtext editable"><b>We have an extremely talented team, whose sole goal is to figure out the best science.</b></p>
</div>
</div>
</section>
<section class="pad">
<div class="container">
<p class="editor-link"><a href="cloudcannon:collections/_staff_members" class="btn"><strong>✎</strong> Manage Staff Members</a></p>
<ul class="staff">
{% for person in site.staff_members %}
<li>
<div class="square-image" style="background-image: url({% include relative-src.html src=person.image_path %})"></div>
<div class="name">{{ person.name }}</div>
<div class="position">{{ person.position }}</div>
</li>
{% endfor %}
</ul>
</div>
</section>