forked from CloudCannon/hydra-jekyll-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
14 lines (14 loc) · 675 Bytes
/
Copy pathabout.html
File metadata and controls
14 lines (14 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
title: Our team
description: We've built an amazing team of developers, marketers, designers and sales people.
---
<p class="editor-link" style="text-align: center;"><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"><img src="{% include relative-src.html src=person.image_path %}" alt="{{ person.name }}"/></div>
<div class="name"><a target="_blank" href="https://twitter.com/{{ person.twitter }}">{{ person.name }}</a></div>
<div class="position">{{ person.position }}</div>
</li>
{% endfor %}
</ul>