mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 09:46:57 +01:00
parent
dba37834cf
commit
1ec467412a
@ -67,6 +67,9 @@ collections:
|
|||||||
usecases:
|
usecases:
|
||||||
output: true
|
output: true
|
||||||
permalink: /:collection/:path/
|
permalink: /:collection/:path/
|
||||||
|
partners:
|
||||||
|
output: true
|
||||||
|
permalink: /:collection/:path/
|
||||||
|
|
||||||
|
|
||||||
# Plugins
|
# Plugins
|
||||||
|
BIN
_src/_assets/images/hero-ipdb.jpg
Normal file
BIN
_src/_assets/images/hero-ipdb.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 99 KiB |
16
_src/_assets/styles/_page-partners.scss
Normal file
16
_src/_assets/styles/_page-partners.scss
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
.content--partner {
|
||||||
|
.partner__logo {
|
||||||
|
margin-bottom: $spacer * 4;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.partner__actions {
|
||||||
|
margin-top: $spacer * 2;
|
||||||
|
padding-top: $spacer * 2;
|
||||||
|
border-top: 1px solid lighten($gray-dark, 5%);
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
@ -62,3 +62,4 @@
|
|||||||
@import '_page-community';
|
@import '_page-community';
|
||||||
@import '_page-contact';
|
@import '_page-contact';
|
||||||
@import '_page-cla';
|
@import '_page-cla';
|
||||||
|
@import '_page-partners';
|
||||||
|
@ -1,36 +0,0 @@
|
|||||||
|
|
||||||
- name: IPDB
|
|
||||||
link: https://ipdb.foundation
|
|
||||||
|
|
||||||
- name: Tangent90
|
|
||||||
link: http://www.tangent90.co.uk
|
|
||||||
|
|
||||||
- name: Interledger
|
|
||||||
link: https://interledger.org
|
|
||||||
|
|
||||||
- name: Monax
|
|
||||||
link: https://monax.io
|
|
||||||
|
|
||||||
- name: Tymlez
|
|
||||||
link: http://www.tymlez.com
|
|
||||||
|
|
||||||
- name: Capgemini
|
|
||||||
link: https://www.capgemini.com
|
|
||||||
|
|
||||||
- name: Recruit Technologies
|
|
||||||
link: http://recruit-tech.co.jp
|
|
||||||
|
|
||||||
- name: ReThinkDB
|
|
||||||
link: https://www.rethinkdb.com
|
|
||||||
|
|
||||||
- name: MongoDB
|
|
||||||
link: https://www.mongodb.com
|
|
||||||
|
|
||||||
- name: innogy
|
|
||||||
link: https://www.innogy.com/
|
|
||||||
|
|
||||||
- name: Cognizant
|
|
||||||
link: https://www.cognizant.com
|
|
||||||
|
|
||||||
- name: Microsoft
|
|
||||||
link: https://www.microsoft.com
|
|
@ -9,18 +9,22 @@
|
|||||||
<div class="row row--wide">
|
<div class="row row--wide">
|
||||||
<article class="grid grid--full grid-small--half grid-medium--fit grid-medium--columns grid--justifycenter grid--gutters">
|
<article class="grid grid--full grid-small--half grid-medium--fit grid-medium--columns grid--justifycenter grid--gutters">
|
||||||
|
|
||||||
{% for partner in site.data.partners %}
|
{% assign partners_sorted = (site.partners | sort: 'date') %}
|
||||||
|
|
||||||
<div class="grid__col grid__col--1">
|
{% for partner in partners_sorted %}
|
||||||
|
|
||||||
<a class="partner" href="{{ partner.link }}">
|
{% assign slug = partner.title | downcase | remove: "." | replace: " ", "-" %}
|
||||||
<svg class="partner__logo partner__logo--{{ partner.name | downcase | remove: "." | replace: " ", "-" }}" aria-labelledby="title">
|
|
||||||
<title>{{ partner.name }}</title>
|
|
||||||
<use xlink:href="/assets/img/sprite.svg#logo-{{ partner.name | downcase | remove: "." | replace: " ", "-" }}"></use>
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div>
|
<div class="grid__col grid__col--1">
|
||||||
|
|
||||||
|
<a class="partner" href="{{ partner.link }}">
|
||||||
|
<svg class="partner__logo partner__logo--{{ slug }}" aria-labelledby="title">
|
||||||
|
<title>{{ partner.name }}</title>
|
||||||
|
<use xlink:href="/assets/img/sprite.svg#logo-{{ slug }}"></use>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
43
_src/_layouts/partner.html
Normal file
43
_src/_layouts/partner.html
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
layout: base
|
||||||
|
|
||||||
|
cta:
|
||||||
|
title: Meet BigchainDB
|
||||||
|
description: The scalable blockchain database
|
||||||
|
button: Get started
|
||||||
|
---
|
||||||
|
|
||||||
|
<header role="banner" class="header header--partner" {% if page.header %}style="background-image:url('/assets/img/{{ page.header }}')"{% endif %}>
|
||||||
|
|
||||||
|
{% include menu-main.html %}
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<hgroup>
|
||||||
|
<h1 class="header__title">{{ page.name }}</h1>
|
||||||
|
</hgroup>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section role="main" class="section content content--page content--partner">
|
||||||
|
|
||||||
|
{% assign slug = page.title | downcase | remove: "." | replace: " ", "-" %}
|
||||||
|
|
||||||
|
<div class="row row--narrow">
|
||||||
|
<svg class="partner__logo partner__logo--{{ slug }}" aria-labelledby="title">
|
||||||
|
<title>{{ page.name }}</title>
|
||||||
|
<use xlink:href="/assets/img/sprite.svg#logo-{{ slug }}"></use>
|
||||||
|
</svg>
|
||||||
|
|
||||||
|
{{ content }}
|
||||||
|
|
||||||
|
<aside class="partner__actions">
|
||||||
|
{% if page.usecase %}
|
||||||
|
<a class="btn btn-sm btn-primary" href="/usecases/{{ page.usecase }}">See use case</a>
|
||||||
|
{% endif %}
|
||||||
|
<a href="{{ page.link }}" rel="external">Visit {{ page.name }}</a>
|
||||||
|
</aside>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{% include sections/section-cta.html %}
|
10
_src/_partners/capgemini.md
Normal file
10
_src/_partners/capgemini.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: Capgemini
|
||||||
|
link: https://www.capgemini.com
|
||||||
|
---
|
||||||
|
|
||||||
|
With more than 190,000 people, Capgemini is present in over 40 countries and celebrates its 50th Anniversary year in 2017. A global leader in consulting, technology and outsourcing services, the Group reported 2016 global revenues of EUR 12.5 billion. Together with its clients, Capgemini creates and delivers business, technology and digital solutions that fit their needs, enabling them to achieve innovation and competitiveness. A deeply multicultural organization, Capgemini has developed its own way of working, the Collaborative Business ExperienceTM, and draws on Rightshore®, its worldwide delivery model.
|
||||||
|
|
||||||
|
They offer an array of integrated services that combine top-of-the-range technology with deep sector expertise and a strong command of our four key businesses.
|
8
_src/_partners/cognizant.md
Normal file
8
_src/_partners/cognizant.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: Cognizant
|
||||||
|
link: https://www.cognizant.com
|
||||||
|
---
|
||||||
|
|
||||||
|
Cognizant is one of the world's leading professional services companies, transforming clients' business, operating and technology models for the digital era. Our unique industry-based, consultative approach helps clients envision, build and run more innovative and efficient businesses. Headquartered in the U.S., Cognizant, a member of the NASDAQ-100, is ranked 230 on the Fortune 500 and is consistently listed among the most admired companies in the world.
|
10
_src/_partners/innogy.md
Normal file
10
_src/_partners/innogy.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: innogy SE
|
||||||
|
link: https://www.innogy.com/
|
||||||
|
usecase: /supplychain/innogy/
|
||||||
|
header: hero-innogy.jpg
|
||||||
|
---
|
||||||
|
|
||||||
|
innogy SE is an European energy company. With its three business areas of renewables, grid & infrastructure as well as retail, it addresses the requirements of a modern, decarbonized, decentralized and digital world. The focus of innogy SE’s activities is on offering existing and potential customers innovative and sustainable products and services which enable them to use energy more efficiently and improve their quality of life.
|
8
_src/_partners/interledger.md
Normal file
8
_src/_partners/interledger.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: Interledger
|
||||||
|
link: https://interledger.org
|
||||||
|
---
|
||||||
|
|
||||||
|
Interledger is an open suite of protocols for connecting ledgers of all types: from digital wallets and national payment systems to blockchains and beyond. This will make it easy to transact with anyone, no matter where we live or what type of money we use. Sending value will be as easy as sending information is today. This is the vision of the Internet of Value.
|
11
_src/_partners/ipdb.md
Normal file
11
_src/_partners/ipdb.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: IPDB
|
||||||
|
link: https://ipdb.foundation
|
||||||
|
header: hero-ipdb.jpg
|
||||||
|
---
|
||||||
|
|
||||||
|
IPDB is a global database for everyone, everywhere. It is built with identity and creators in mind. It allows the management of personal data, reputation, and privacy, along with secure attribution, metadata, licensing, and links to media files. It’s also flexible: the ultimate applications are up to users' imaginations, for everything from equal-opportunity banking to energy innovation.
|
||||||
|
|
||||||
|
To make this a reality, the IPDB Foundation will research and implement a decentralized database platform and governance model that allows the decentralized, permanent storage of data independent of a central entity, that anyone can use.
|
8
_src/_partners/microsoft.md
Normal file
8
_src/_partners/microsoft.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: Microsoft
|
||||||
|
link: https://www.microsoft.com
|
||||||
|
---
|
||||||
|
|
||||||
|
Microsoft Corporation is a technology company headquartered in Redmond, Washington, that develops, manufactures, licenses, supports and sells computer software, consumer electronics and personal computers and services. Its best known software products are the Microsoft Windows line of operating systems, Microsoft Office office suite, and Internet Explorer and Edge web browsers.
|
10
_src/_partners/monax.md
Normal file
10
_src/_partners/monax.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: Monax
|
||||||
|
link: https://monax.io
|
||||||
|
---
|
||||||
|
|
||||||
|
Monax is the company behind eris, an open platform for developers and devops to build, ship, and run blockchain-based applications for business ecosystems.
|
||||||
|
|
||||||
|
Monax sells legally compliant smart contract-based SDKs to accelerate your time to market with sophisticated ecosystem applications.
|
8
_src/_partners/mongodb.md
Normal file
8
_src/_partners/mongodb.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: MongoDB
|
||||||
|
link: https://www.mongodb.com
|
||||||
|
---
|
||||||
|
|
||||||
|
MongoDB, Inc. is the company behind the database for GIANT ideas, offering the best of traditional databases as well as the flexibility, scale and performance today’s applications require. They build MongoDB and the drivers, offer software and services, run MongoDB University (which has trained over 350,000 engineers in MongoDB), and sponsor the MongoDB community.
|
10
_src/_partners/recruit-technologies.md
Normal file
10
_src/_partners/recruit-technologies.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: Recruit Technologies
|
||||||
|
link: http://recruit-tech.co.jp
|
||||||
|
usecase: /identity/recruit/
|
||||||
|
header: hero-recruit.jpg
|
||||||
|
---
|
||||||
|
|
||||||
|
Founded in 1960, Recruit Holdings Co. is a leading information services and human resources company in Japan. Through a wide range of services, the Recruit Group provides services in a variety of areas, including recruitment advertising, employment placement, staffing, education, housing and real estate, bridal, travel, dining, beauty, automobiles and others. The Recruit Group has more than 30,000 employees and operates all over the world.
|
10
_src/_partners/rethinkdb.md
Normal file
10
_src/_partners/rethinkdb.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: ReThinkDB
|
||||||
|
link: https://www.rethinkdb.com
|
||||||
|
---
|
||||||
|
|
||||||
|
RethinkDB is the first open-source, scalable JSON database built from the ground up for the realtime web. It inverts the traditional database architecture by exposing an exciting new access model – instead of polling for changes, the developer can tell RethinkDB to continuously push updated query results to applications in realtime. RethinkDB’s realtime push architecture dramatically reduces the time and effort necessary to build scalable realtime apps.
|
||||||
|
|
||||||
|
In addition to being designed from the ground up for realtime apps, RethinkDB offers a flexible query language, intuitive operations and monitoring APIs, and is easy to setup and learn.
|
8
_src/_partners/tangent90.md
Normal file
8
_src/_partners/tangent90.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: Tangent90
|
||||||
|
link: http://www.tangent90.co.uk
|
||||||
|
---
|
||||||
|
|
||||||
|
Tangent 90 Ltd developed the VendIt SaaS solution using years of industry experience to create products designed to provide powerful functionality, that integrates easily with existing systems.
|
8
_src/_partners/tymlez.md
Normal file
8
_src/_partners/tymlez.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
layout: partner
|
||||||
|
|
||||||
|
name: Tymlez
|
||||||
|
link: http://www.tymlez.com
|
||||||
|
---
|
||||||
|
|
||||||
|
Tymlez provides solutions and services to transform, innovate and disrupt businesses by leveraging the blockchain. They develop and implement new applications based on this technology, while they take into account the existing IT-landscape, thereby shaping a 2-speed IT strategy for the organizations, with timeless processes and systems as a result.
|
@ -7,6 +7,9 @@ front_page: true
|
|||||||
quotes: set1
|
quotes: set1
|
||||||
|
|
||||||
js: page-front.min.js
|
js: page-front.min.js
|
||||||
|
|
||||||
|
redirect_from:
|
||||||
|
- /partners/
|
||||||
---
|
---
|
||||||
|
|
||||||
{% include hero.html %}
|
{% include hero.html %}
|
||||||
|
Loading…
Reference in New Issue
Block a user