mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 09:46:57 +01:00
testimonials as multiple arrays, more quotes, output on features page too
This commit is contained in:
parent
88e90c74d5
commit
f5d6ff17f0
BIN
_src/_assets/images/chris-messina.jpg
Normal file
BIN
_src/_assets/images/chris-messina.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 499 KiB |
BIN
_src/_assets/images/john-lilic.jpg
Normal file
BIN
_src/_assets/images/john-lilic.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
_src/_assets/images/vinay-gupta.jpg
Normal file
BIN
_src/_assets/images/vinay-gupta.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
8
_src/_assets/javascripts/page-features.js
Normal file
8
_src/_assets/javascripts/page-features.js
Normal file
@ -0,0 +1,8 @@
|
||||
|
||||
//=include bigchain/testimonials.js
|
||||
|
||||
jQuery(function($) {
|
||||
|
||||
Testimonials.init();
|
||||
|
||||
});
|
@ -1,20 +1,48 @@
|
||||
#
|
||||
#
|
||||
# Photo paths are relative to /assets/img/
|
||||
# Photos of quotees need to be square and should be at least or exact 144x144px.
|
||||
#
|
||||
|
||||
- name: Juan Benet
|
||||
set1:
|
||||
- name: John Lilic
|
||||
org: Consensys
|
||||
link: https://consensys.net/
|
||||
image: john-lilic.jpg
|
||||
quote: 'BigchainDB is a system that affords enterprise an opportunity to credibly consider business processes with very high transaction through-put running on a blockchain.'
|
||||
|
||||
|
||||
- name: Fabian Vogelsteller
|
||||
org: Ethereum Foundation
|
||||
link: https://www.ethereum.org
|
||||
image: fabian-vogelsteller.jpg
|
||||
quote: 'BigchainDB is the logical next step in scaling non-computational blockchains.'
|
||||
|
||||
|
||||
- name: Chris Messina
|
||||
org: Uber
|
||||
link: https://www.uber.com
|
||||
image: chris-messina.jpg
|
||||
quote: 'From the makers of ascribe, this has the potential to be a big deal. The team has blown the cap off the conventional blockchain limitations.'
|
||||
|
||||
|
||||
set2:
|
||||
- name: Juan Benet
|
||||
org: IPFS
|
||||
link: https://ipfs.io
|
||||
image: /assets/img/juan-benet.png
|
||||
image: juan-benet.png
|
||||
quote: 'BigchainDB is exciting! It marries the performance and power of traditional databases with the public verifiability of blockchains.'
|
||||
|
||||
|
||||
- name: Ian Worrall
|
||||
- name: Ian Worrall
|
||||
org: Encrypted Labs
|
||||
link: http://encryptedlabs.com
|
||||
image: /assets/img/ian-worrall.jpg
|
||||
image: ian-worrall.jpg
|
||||
quote: 'BigchainDB is a game changer. This is the first true solution I have seen that resolves many of the restraints with the Bitcoin blockchain.'
|
||||
|
||||
|
||||
- name: Fabian Vogelsteller
|
||||
org: Ethereum Foundation
|
||||
link: https://www.ethereum.org
|
||||
image: /assets/img/fabian-vogelsteller.jpg
|
||||
quote: 'BigchainDB is the logical next step in scaling non-computational blockchains.'
|
||||
- name: Vinay Gupta
|
||||
org: Ethereum Foundation & Consensys
|
||||
link: https://www.ethereum.org/
|
||||
image: vinay-gupta.jpg
|
||||
quote: 'I think framing Ethereum as logic, IPFS as disk and BigchainDB as database - a direct parallel to the web stack - is nothing short of genius and really points the way to the future of this industry and, shortly, the web itself.'
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
<article class="testimonials grid grid--full grid-medium--fit grid--gutters">
|
||||
|
||||
{% for testimonial in site.data.testimonials %}
|
||||
{% for testimonial in site.data.testimonials.[page.quotes] %}
|
||||
|
||||
<div class="grid__col">
|
||||
<figure class="testimonial">
|
||||
@ -9,7 +9,7 @@
|
||||
<blockquote class="testimonial__quote">{{ testimonial.quote }}</blockquote>
|
||||
|
||||
<figcaption class="testimonial__caption">
|
||||
<img class="testimonial__avatar" src="{{ testimonial.image }}">
|
||||
<img class="testimonial__avatar" src="/assets/img/{{ testimonial.image }}">
|
||||
<cite class="testimonial__cite">
|
||||
<span class="testimonial__name">{{ testimonial.name }}</span>
|
||||
<span class="testimonial__org"><a href="{{ testimonial.link }}">{{ testimonial.org }}</a></span>
|
||||
|
@ -3,6 +3,10 @@ layout: page
|
||||
|
||||
title: How It Works
|
||||
description: 'Rather than trying to scale up blockchain technology, BigchainDB starts with a big data distributed database and then adds blockchain characteristics - decentralized control, immutability and the transfer of digital assets.'
|
||||
|
||||
quotes: set2
|
||||
|
||||
js: page-features.min.js
|
||||
---
|
||||
|
||||
<section class="section section-features">
|
||||
@ -213,6 +217,8 @@ description: 'Rather than trying to scale up blockchain technology, BigchainDB s
|
||||
|
||||
</section>
|
||||
|
||||
{% include section-testimonials.html %}
|
||||
|
||||
<section class="section section-contribute background--photo">
|
||||
<div class="row">
|
||||
<header class="section-header">
|
||||
|
@ -5,6 +5,8 @@ tagline: 'Meet BigchainDB. The scalable blockchain database.'
|
||||
|
||||
front_page: true
|
||||
hero_video_name: northern-light
|
||||
quotes: set1
|
||||
|
||||
js: page-front.min.js
|
||||
---
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user