-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
29 lines (27 loc) · 1.15 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 developers, marketers, designers and sales people.
image: https://source.unsplash.com/BcoGknSqlDc/2000x1322?a=.png
---
<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 Story</h1>
<p class="subtext editable">We have an extremely talented team whose sole goal is to bring you closer to the people around you.</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"><a target="_blank" href="https://twitter.com/{{ person.twitter_username }}">{{ person.name }}</a></div>
<div class="position">{{ person.position }}</div>
</li>
{% endfor %}
</ul>
</div>
</section>