diff --git a/_data/team.yml b/_data/team.yml new file mode 100644 index 0000000..6272a11 --- /dev/null +++ b/_data/team.yml @@ -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: \ No newline at end of file diff --git a/_i18n/en.yml b/_i18n/en.yml index e411cbe..24afb72 100644 --- a/_i18n/en.yml +++ b/_i18n/en.yml @@ -183,6 +183,10 @@ pages: blog: title: The Digital Cash Blog description: The Digital Cash Blog + + team: + title: Team + description: The Dash Team nav: diff --git a/_i18n/en/team/hero.html b/_i18n/en/team/hero.html new file mode 100644 index 0000000..b14d710 --- /dev/null +++ b/_i18n/en/team/hero.html @@ -0,0 +1,15 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + + +
\ No newline at end of file diff --git a/_i18n/es/team/hero.html b/_i18n/es/team/hero.html new file mode 100644 index 0000000..b14d710 --- /dev/null +++ b/_i18n/es/team/hero.html @@ -0,0 +1,15 @@ +
+
+ +
+ + + {% include nav-desktop.html %} + + + +
\ No newline at end of file diff --git a/assets/img/team/anon.png b/assets/img/team/anon.png new file mode 100644 index 0000000..713053f Binary files /dev/null and b/assets/img/team/anon.png differ diff --git a/team/index.html b/team/index.html new file mode 100644 index 0000000..94c7427 --- /dev/null +++ b/team/index.html @@ -0,0 +1,41 @@ +--- +layout: default +title: pages.team.title +description: pages.team.description +--- + +{% tf team/hero.html %} + +
+ + + {% for member in site.data.team %} +
+ + {% if member.image %} +
+ {% else %} +
+ {% endif %} + +
{{ member.name }}
+
{{ member.title }}
+
{{ member.description }}
+ + {% if member.email %} +
{{ member.email }}
+ {% endif %} + + {% if member.pgp %} +
PGP Key
+ {% endif %} + + {% if member.twitter %} +
{{ member.twitter }}
+ {% endif %} + +
+ {% endfor %} + + +
\ No newline at end of file