mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
Cleaning team page (#248)
* re group team; initial statement * cleaning-team * sorted out all team members
This commit is contained in:
parent
cf16188cfa
commit
38a257d6af
4 changed files with 188 additions and 49 deletions
|
@ -17,7 +17,7 @@
|
|||
keybase: https://keybase.io/schinzelh
|
||||
twitter:
|
||||
dashforum: flare
|
||||
team-title: Dash Core DAO Management
|
||||
team-title: QA
|
||||
|
||||
- name: UdjinM6
|
||||
title: Core Developer
|
||||
|
@ -130,41 +130,41 @@
|
|||
team-title: Dash DAPI
|
||||
|
||||
- name: Pierre van Rooyen
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
twitter:
|
||||
dashforum:
|
||||
dashforum:
|
||||
team-title: Dash DAPI
|
||||
|
||||
|
||||
- name: Pascal
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
twitter:
|
||||
dashforum:
|
||||
dashforum:
|
||||
team-title: Dash DAPI
|
||||
|
||||
- name: Madeleine Shang
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
twitter:
|
||||
dashforum:
|
||||
dashforum:
|
||||
team-title: Dash DAPI
|
||||
|
||||
- name: Marthinus Engelbrecht
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
twitter:
|
||||
dashforum: MarthinusEngelbrecht
|
||||
team-title: Dash DAPI
|
||||
|
@ -260,11 +260,11 @@
|
|||
team-title: UX
|
||||
|
||||
- name: Etherdesign
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
twitter:
|
||||
dashforum:
|
||||
team-title: UX
|
||||
|
@ -278,12 +278,12 @@
|
|||
twitter:
|
||||
dashforum:
|
||||
team-title: Dash Web
|
||||
|
||||
|
||||
- name: Jon Rudd
|
||||
title:
|
||||
title:
|
||||
description:
|
||||
image:
|
||||
email:
|
||||
image:
|
||||
email:
|
||||
keybase:
|
||||
twitter:
|
||||
dashforum:
|
||||
|
@ -407,5 +407,4 @@
|
|||
keybase: https://keybase.io/perrywoodin
|
||||
twitter:
|
||||
dashforum: node40
|
||||
team-title: Strategy Advisor
|
||||
|
||||
team-title: Testing + Support
|
||||
|
|
19
_i18n/en.yml
19
_i18n/en.yml
|
@ -921,9 +921,22 @@ pages:
|
|||
core-approval-btn: Network Approval
|
||||
core-approval-link: http://dashvotetracker.com
|
||||
core-join-btn: Join Our Team
|
||||
core-heading: Core Team
|
||||
dev-heading: >
|
||||
Developers / Support:
|
||||
core-heading: Core Developer
|
||||
forum-name: >
|
||||
Dashforum:
|
||||
strateg-heading: Strategy Advisor
|
||||
coredao: Dash Core DAO Management
|
||||
dapidev: Dash DAPI
|
||||
webdev: Dash Web
|
||||
ui: Dash UI
|
||||
integrations: Integrations
|
||||
mobile: Mobile
|
||||
infrastructure: Infrastructure
|
||||
qa: QA
|
||||
pm: Project Managers
|
||||
business: Business Development
|
||||
support: Testing + Support
|
||||
|
||||
nav:
|
||||
what-is-dash: What is Dash
|
||||
get-dash: Get Dash
|
||||
|
|
|
@ -29,4 +29,10 @@
|
|||
<div class="member__detail member__detail--twitter"><a href="{{ member.twitter }}" target="_blank">{{ member.twitter }}</a></div>
|
||||
{% endif %}
|
||||
|
||||
{% if member.dashforum %}
|
||||
<h5>{% t pages.team.forum-name %}</h5>
|
||||
<div class="member__detail member__detail--dashforum">{{ member.dashforum }}</div>
|
||||
{% endif %}
|
||||
|
||||
|
||||
</li>
|
||||
|
|
141
team/index.html
141
team/index.html
|
@ -5,6 +5,19 @@ description: pages.team.description
|
|||
---
|
||||
|
||||
{% include hero/team.html %}
|
||||
{% assign strategs = site.data.team | where:"team-title","Strategy Advisor" %}
|
||||
{% assign coredao = site.data.team | where:"team-title","Dash Core DAO Management" %}
|
||||
{% assign dapidev = site.data.team | where:"team-title","Dash DAPI" %}
|
||||
{% assign webdev = site.data.team | where:"team-title","Dash Web" %}
|
||||
{% assign ui = site.data.team | where:"team-title","UX" %}
|
||||
{% assign integrations = site.data.team | where:"team-title","Integrations" %}
|
||||
{% assign mobile = site.data.team | where:"team-title","Mobile" %}
|
||||
{% assign infrastructure = site.data.team | where:"team-title","Infrastructure" %}
|
||||
{% assign qa = site.data.team | where:"team-title","QA" %}
|
||||
{% assign pm = site.data.team | where:"team-title","Project Managers" %}
|
||||
{% assign business = site.data.team | where:"team-title","Business Development" %}
|
||||
{% assign support = site.data.team | where:"team-title","Testing + Support" %}
|
||||
|
||||
|
||||
<div class="page page--team">
|
||||
|
||||
|
@ -12,29 +25,137 @@ description: pages.team.description
|
|||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.core-heading %}<!-- <a class="permalink" title="Permalink" id="social"></a> --></h2>
|
||||
<h2 class="section__title">{% t pages.team.strateg-heading %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in site.data.team %}
|
||||
{% if member.core-team %}
|
||||
{% include member-list.html %}
|
||||
{% endif %}
|
||||
{% for member in strategs %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.dev-heading %}<!-- <a class="permalink" title="Permalink" id="social"></a> --></h2>
|
||||
<h2 class="section__title">{% t pages.team.coredao %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in site.data.team %}
|
||||
{% unless member.core-team %}
|
||||
{% include member-list.html %}
|
||||
{% endunless %}
|
||||
{% for member in coredao %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.dapidev %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in dapidev %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.webdev %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in webdev %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.ui %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in ui %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.integrations %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in integrations %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.mobile %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in mobile %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.infrastructure %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in infrastructure %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.qa %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in qa %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.pm %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in pm %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.business %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in business %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section__content content">
|
||||
<div class="section__intro">
|
||||
<h2 class="section__title">{% t pages.team.support %}</h2>
|
||||
</div>
|
||||
<ul class="member-list">
|
||||
{% for member in support %}
|
||||
{% include member-list.html %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue