1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-06-29 00:58:04 +02:00
site/_src/index.html

96 lines
3.1 KiB
HTML

---
layout: base
tagline: 'Meet BigchainDB.'
front_page: true
quotes: set1
ipdb: true
js: page-front.min.js
redirect_from:
- /partners/
intro:
title: "This is BigchainDB"
description: "With high throughput, sub-second latency and powerful functionality to automate business processes, BigchainDB looks, acts and feels like a database with added blockchain characteristics."
keyfeatures:
- title: "Decentralization"
icon: "icon-nodes"
- title: "Query"
icon: "icon-search"
- title: "Immutability"
icon: "icon-castle"
- title: "Scaling"
icon: "icon-scaling"
- title: "Assets & Tokens"
icon: "icon-diamond"
text: "BigchainDB allows developers and enterprise to deploy blockchain proof-of-concepts, platforms and applications with a scalable blockchain database, supporting a wide range of industries and use cases."
button1: "All Features"
button2: "Get Started"
---
{% include hero.html %}
<section id="features" class="section section-intro">
<div class="row">
<header class="section-header">
<h1 class="section-title">{{ page.intro.title }}</h1>
<p class="section-description lead">{{ page.intro.description }}</p>
</header>
</div>
<div class="row row--wide">
<div class="section-intro__main grid grid--full grid-small--fit grid--gutters">
{% for feature in page.intro.keyfeatures %}
<div class="grid__col">
<svg class="icon">
<use xlink:href="/assets/img/sprite.svg#{{ feature.icon }}"></use>
</svg>
<h3>{{ feature.title }}</h3>
</div>
{% endfor %}
</div>
</div>
<div class="row">
<p class="large text-center">{{ page.intro.text }}</p>
<p class="text-center">
<a class="btn btn-primary" href="/features/">{{ page.intro.button1 }}</a> <a class="btn btn-secondary" href="/getstarted/">{{ page.intro.button2 }}</a>
</p>
</div>
</section>
<section class="section section--guides">
<div class="row">
<header class="section-header">
<h1 class="section-title">Guides</h1>
<p class="section-description">Complete these guides to learn about how to create apps in BigchainDB.</p>
</header>
</div>
<div class="row row--wide">
<div class="grid grid--full grid-small--half grid--gutters">
{% for guide in site.guides | limit: 4 %}
<div class="grid__col">
<article class="guide">
<a href="{{ guide.url }}">
<h1 class="guide__title">{{ guide.title }}</h1>
<p class="guide__description">{{ guide.description }}</p>
</a>
</article>
</div>
{% endfor %}
</div>
</div>
<div class="row text-center">
<a class="btn btn-secondary" href="/guides/">All guides</a>
</div>
</section>
{% include sections/section-partners.html %}
{% include sections/section-blog.html %}