Added team page.

This commit is contained in:
Perry Woodin 2016-08-02 11:21:09 -04:00
parent cb2e19c24a
commit 4563e04abf
6 changed files with 195 additions and 0 deletions

120
_data/team.yml Normal file
View file

@ -0,0 +1,120 @@
- name: Evan Duffield
title: Lead Developer
description: Evan (AKA “eduffield”, “evan82”) brings Dash over 17 years of software development experience and an interest in artificial intelligence, financial markets and economics.
image: evan.png
email: evan@dash.org
pgp:
twitter:
- name: Holger Schinzel
title: Quality Assurance, Automation, Testing
description: Holger (AKA “flare”) has a degree in applied computer science and brings 7 years of experience in IT quality management and testing.
image: holger.png
email: holger@dash.org
pgp: https://www.dash.org/wp-content/uploads/2015/11/holger-schinzel.txt
twitter:
- name: UdjinM6
title: Core Developer
description: Brings a total of 12 years of programming experience writing in-house tools for IT companies, user support and quality assurance.
image:
email: udjinm6@dash.org
pgp: https://www.dash.org/wp-content/uploads/2015/11/udjinm6.txt
twitter:
- name: Crowning
title:
description:
image:
email:
pgp:
twitter:
- name: Quantum Explorer
title:
description:
image:
email:
pgp:
twitter:
- name: MooCowMoo
title:
description:
image:
email:
pgp:
twitter:
- name: Andy Freer
title:
description:
image:
email:
pgp:
twitter:
- name: Fernando Gutierrez
title:
description:
image:
email:
pgp:
twitter:
- name: Philipp Engelhorn
title:
description:
image:
email:
pgp:
twitter:
- name: Daniel Diaz
title:
description:
image:
email:
pgp:
twitter:
- name: Mario Müller
title:
description:
image:
email:
pgp:
twitter:
- name: Alexandre Devilliers
title:
description:
image:
email:
pgp:
twitter:
- name: Tiago Serodio
title:
description:
image:
email:
pgp:
twitter:
- name: Slawek
title:
description:
image:
email:
pgp:
twitter:
- name: Robert Wiecko
title:
description:
image:
email:
pgp:
twitter:

View file

@ -184,6 +184,10 @@ pages:
title: The Digital Cash Blog title: The Digital Cash Blog
description: The Digital Cash Blog description: The Digital Cash Blog
team:
title: Team
description: The Dash Team
nav: nav:
what-is-dash: What is Dash what-is-dash: What is Dash

15
_i18n/en/team/hero.html Normal file
View file

@ -0,0 +1,15 @@
<div id="hero">
<div id="background-video">
<video loop autoplay width="100%" height="auto" poster="{{ base }}/assets/img/dashorg-nodes.jpg" class="background-video">
<!-- <source src="assets/videos/Home-BG.m4v" type="video/mp4">
<source src="assets/videos/Home-BG.webm" type="video/webm">
<source src="assets/videos/Home-BG" type="video/ogg"> -->
</video>
</div>
<!-- Navigation -->
{% include nav-desktop.html %}
<!-- Hero content -->
</div>

15
_i18n/es/team/hero.html Normal file
View file

@ -0,0 +1,15 @@
<div id="hero">
<div id="background-video">
<video loop autoplay width="100%" height="auto" poster="{{ base }}/assets/img/dashorg-nodes.jpg" class="background-video">
<!-- <source src="assets/videos/Home-BG.m4v" type="video/mp4">
<source src="assets/videos/Home-BG.webm" type="video/webm">
<source src="assets/videos/Home-BG" type="video/ogg"> -->
</video>
</div>
<!-- Navigation -->
{% include nav-desktop.html %}
<!-- Hero content -->
</div>

BIN
assets/img/team/anon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

41
team/index.html Normal file
View file

@ -0,0 +1,41 @@
---
layout: default
title: pages.team.title
description: pages.team.description
---
{% tf team/hero.html %}
<div class="content">
{% for member in site.data.team %}
<div>
{% if member.image %}
<div><img src="/assets/img/team/{{ %member.image% }}"></div>
{% else %}
<div><img src="/assets/img/team/anon.png"></div>
{% endif %}
<div>{{ member.name }}</div>
<div>{{ member.title }}</div>
<div>{{ member.description }}</div>
{% if member.email %}
<div><a href="mailto:{{ member.email }}">{{ member.email }}</a></div>
{% endif %}
{% if member.pgp %}
<div><a href="{{ member.pgp }}">PGP Key</a></div>
{% endif %}
{% if member.twitter %}
<div>{{ member.twitter }}</div>
{% endif %}
</div>
{% endfor %}
</div>