Update: Team page

This commit is contained in:
andyfreer 2016-11-06 18:03:59 +00:00 committed by 0xfff
parent fb43243dd5
commit 8520bb97a2
3 changed files with 65 additions and 36 deletions

View file

@ -120,6 +120,16 @@ pages:
need-link: https://www.dash.org/forum need-link: https://www.dash.org/forum
need-input: Enter Your Email Address need-input: Enter Your Email Address
merchants:
title: Merchants
description: Spend Dash at these merchants and services
hero-image: participate.jpg
hero-heading: Spend your Dash
hero-text: Spend your Dash instantly and securely at these merchants and services
hero-map-btn: Merchants Map
hero-integrate-btn: Integrate Dash
hero-getlisted-btn: Get Listed
participate: participate:
title: Join the Dash Network title: Join the Dash Network
description: Join the Dash Network description: Join the Dash Network
@ -216,11 +226,13 @@ pages:
team: team:
title: Team title: Team
description: The Dash Team description: The Dash Team
core-heading: Core-Team Board
core-text: Dash's core team is a group funded by the Dash Network to develop Dash.
nav: nav:
what-is-dash: What is Dash what-is-dash: What is Dash
get-dash: Get Dash get-dash: Get Dash
merchants: Merchants
download: Download Wallet download: Download Wallet
buy: Buy Dash buy: Buy Dash
shop: Shop with Dash shop: Shop with Dash

View file

@ -0,0 +1,31 @@
<li class="member" data-mh="member">
<div class="member__avatar">
{% if member.image %}
<div class="member__image-wrapper">
<img class="member__image" src="/assets/img/team/{{ member.image }}" alt="{{ member.name }}">
</div>
{% else %}
<div class="member__image-wrapper">
<img class="member__image" src="/assets/img/team/anon.png" alt="{{ member.name }}">
</div>
{% endif %}
</div>
<div class="member__name" data-mh="member-name">{{ member.name }}</div>
<div class="member__title" data-mh="member-title">{{ member.title }}</div>
<div class="member__description">{{ member.description }}</div>
{% if member.email %}
<div class="member__detail member__detail--email"><a href="mailto:{{ member.email }}">{{ member.email }}</a></div>
{% endif %}
{% if member.pgp %}
<div class="member__detail member__detail--pgp"><a href="{{ member.pgp }}">PGP Key</a></div>
{% endif %}
{% if member.twitter %}
<div class="member__detail member__detail--twitter">{{ member.twitter }}</div>
{% endif %}
</li>

View file

@ -9,44 +9,30 @@ description: pages.team.description
<div class="page page--team"> <div class="page page--team">
<section class="section section--claim"> <section class="section section--claim">
<div class="section__content content">
<div class="section__content content">
<div>
<h1>{% t pages.team.core-heading %}<a class="permalink" title="Permalink" id="social"></a></h1>
{% tmd pages.team.core-text %}
</div>
<ul class="member-list"> <ul class="member-list">
{% for member in site.data.team %} {% for member in site.data.team %}
<li class="member" data-mh="member"> {% include member-list.html %}
<div class="member__avatar">
{% if member.image %}
<div class="member__image-wrapper">
<img class="member__image" src="/assets/img/team/{{ member.image }}" alt="{{ member.name }}">
</div>
{% else %}
<div class="member__image-wrapper">
<img class="member__image" src="/assets/img/team/anon.png" alt="{{ member.name }}">
</div>
{% endif %}
</div>
<div class="member__name" data-mh="member-name">{{ member.name }}</div>
<div class="member__title" data-mh="member-title">{{ member.title }}</div>
<div class="member__description">{{ member.description }}</div>
{% if member.email %}
<div class="member__detail member__detail--email"><a href="mailto:{{ member.email }}">{{ member.email }}</a></div>
{% endif %}
{% if member.pgp %}
<div class="member__detail member__detail--pgp"><a href="{{ member.pgp }}">PGP Key</a></div>
{% endif %}
{% if member.twitter %}
<div class="member__detail member__detail--twitter">{{ member.twitter }}</div>
{% endif %}
</li>
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>
<div class="section__content content">
<div>
<h2>{% t pages.community.social-heading %}<a class="permalink" title="Permalink" id="social"></a></h2>
</div>
<ul class="member-list">
{% for member in site.data.team %}
{% include member-list.html %}
{% endfor %}
</ul>
</div>
</section> </section>
</div> </div>