add all new pages, prepare team grid

This commit is contained in:
Matthias Kretschmann 2016-01-07 19:37:20 +01:00
parent 48b6716c5c
commit c7ba69aa69
10 changed files with 71 additions and 0 deletions

View File

@ -27,6 +27,7 @@
@import 'bigchain/_code';
@import 'bigchain/_syntax';
@import 'bigchain/_footer';
@import 'bigchain/_team';
@import 'bigchain/_utilities';
// Content types

View File

20
_src/_data/team.yml Normal file
View File

@ -0,0 +1,20 @@
- name: Bruce Pon
position: CEO
image:
- name: Trent McConaghy
position: CTO
image:
- name: Andreas Müller
position: Databases
image:
- name: Rodolphe Marques
position: Protocols
image:
- name: Troy McConaghy
position:
image:

10
_src/_includes/team.html Normal file
View File

@ -0,0 +1,10 @@
{% for member in site.data.team %}
<div class="grid__col">
<article class="team">
<img class="team__image" src="/assets/img/team/{{ member.image }}"
<h1 class="team__name">{{ member.name }}</h1>
<p class="team__position">{{ member.position }}</p>
</article>
</div>
{% endfor %}

15
_src/about.md Normal file
View File

@ -0,0 +1,15 @@
---
layout: page
title: About
---
Working to put intellectual property on the blockchain (IP over IP) since Aug 2013, it became clear that scalability was a fundamental barrier to wider adoption of blockchain.
We released a whitepaper in Feb 2015 highlighting the ideal characteristics of a scalable blockchain and in Sep 2015, we decided to try to tackle the scalability problem. In Dec 2015, we came up with a solution that was quickly piloted with several industry clients.
The result is Bigchain, a blockchain for the world.
# Team
{% include team.html %}

5
_src/contact.md Normal file
View File

@ -0,0 +1,5 @@
---
layout: page
title: Contact
---

5
_src/features.html Normal file
View File

@ -0,0 +1,5 @@
---
layout: page
title: Features
---

5
_src/privacy.md Normal file
View File

@ -0,0 +1,5 @@
---
layout: page
title: Privacy
---

5
_src/tos.md Normal file
View File

@ -0,0 +1,5 @@
---
layout: page
title: Terms of Service
---

5
_src/whitepaper.md Normal file
View File

@ -0,0 +1,5 @@
---
layout: page
title: Whitepaper
---