1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-22 17:50:07 +01:00

New band members (#89)

* new team members
* switch to alphabetic order by first name
* more spacious team grid
This commit is contained in:
Matthias Kretschmann 2017-01-11 11:19:41 +01:00 committed by GitHub
parent 75dfd2a322
commit 2c39ab89c7
8 changed files with 39 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -42,7 +42,7 @@
.team__social__link { .team__social__link {
display: inline-block; display: inline-block;
margin: 0 ($spacer / 4); margin: 0 ($spacer / 2);
box-shadow: none; box-shadow: none;
&, &,
@ -70,8 +70,15 @@
} }
//
// Grid redefinition: more spacious
//
$spacer-team: 4rem;
.grid--team { .grid--team {
.grid__col:last-child { margin: -($spacer-team) 0 $spacer-team (-($spacer-team));
flex: 0 0 100%;
> .grid__col {
padding: $spacer-team 0 0 $spacer-team;
} }
} }

View File

@ -1,4 +1,28 @@
- name: Daniel Lustig
position: Administrative Assistant
image: team-daniel.jpg
linkedin: daniel-lustig-852a408a
- name: Krish Iyer
position: Developer
image: team-krish.jpg
twitter: krish7919
linkedin: krish7919
github: krish7919
- name: Scott Sadler
position: Developer
image: team-scott.jpg
linkedin: scott-sadler-6397316
github: libscott
- name: Simon Schwerin
position: Strategy & Business Development Intern
image: team-simon.jpg
twitter: Zimmtstern_7
linkedin: simonschwerin
- name: Bruce Pon - name: Bruce Pon
position: CEO position: CEO
image: team-bruce.jpg image: team-bruce.jpg

View File

@ -1,7 +1,9 @@
<div class="grid grid--full grid-small--half grid-medium--third grid--gutters text-center grid--team"> <div class="grid grid--full grid-small--half grid-medium--third grid--gutters text-center grid--team">
{% for member in site.data.team %} {% assign team = site.data.team | sort: 'name' %}
{% for member in team %}
<div class="grid__col"> <div class="grid__col">
<article class="team"> <article class="team">
<img class="team__image" src="/assets/img/{{ member.image }}"> <img class="team__image" src="/assets/img/{{ member.image }}">

View File

@ -12,4 +12,4 @@ From the seed of the idea, to intense efforts starting late summer 2015, we made
## Team ## Team
{% include team.html %} {% include team.html %}