-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
28 lines (27 loc) · 1017 Bytes
/
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
---
title: Our team
description: >-
Blockmountain started as a project where the goal was to build software to trade cryptocurrencies,
at first glance it all changed when we decided we'd like to contribute to the Solana ecosystem.
<br><br>In the end, nothing changed.
---
<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">{{ person.name }}</div>
<div class="position">{{ person.position }}</div>
<br>
<div class="text-container">
{% for link in person.links %}
<a href="{% include relative-src.html src=link.link %}" {% if link.social_icon %}class="{{ link.social_icon }}-icon"{% endif %}>
{% if link.social_icon %}
{% include social-icon.html icon=link.social_icon %}
{% endif %}</a>
{% endfor %}
</div>
<br>
<div class="text-container">{{ person.blurb }}</div>
</li>
{% endfor %}
</ul>