mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 09:46:57 +01:00
add all new pages, prepare team grid
This commit is contained in:
parent
48b6716c5c
commit
c7ba69aa69
@ -27,6 +27,7 @@
|
|||||||
@import 'bigchain/_code';
|
@import 'bigchain/_code';
|
||||||
@import 'bigchain/_syntax';
|
@import 'bigchain/_syntax';
|
||||||
@import 'bigchain/_footer';
|
@import 'bigchain/_footer';
|
||||||
|
@import 'bigchain/_team';
|
||||||
@import 'bigchain/_utilities';
|
@import 'bigchain/_utilities';
|
||||||
|
|
||||||
// Content types
|
// Content types
|
||||||
|
0
_src/_assets/styles/bigchain/_team.scss
Normal file
0
_src/_assets/styles/bigchain/_team.scss
Normal file
20
_src/_data/team.yml
Normal file
20
_src/_data/team.yml
Normal 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
10
_src/_includes/team.html
Normal 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
15
_src/about.md
Normal 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
5
_src/contact.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
|
||||||
|
title: Contact
|
||||||
|
---
|
5
_src/features.html
Normal file
5
_src/features.html
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
|
||||||
|
title: Features
|
||||||
|
---
|
5
_src/privacy.md
Normal file
5
_src/privacy.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
|
||||||
|
title: Privacy
|
||||||
|
---
|
5
_src/tos.md
Normal file
5
_src/tos.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
|
||||||
|
title: Terms of Service
|
||||||
|
---
|
5
_src/whitepaper.md
Normal file
5
_src/whitepaper.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
|
||||||
|
title: Whitepaper
|
||||||
|
---
|
Loading…
Reference in New Issue
Block a user