mirror of
https://github.com/bigchaindb/site.git
synced 2025-02-14 21:10:28 +01:00
add guides list to documentation section on get started page, change documentation section name, add guides link
This commit is contained in:
parent
7c033c2a2a
commit
41112efc92
@ -51,18 +51,12 @@ drivers:
|
|||||||
# ----------------------------
|
# ----------------------------
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
title: "Documentation & Examples"
|
title: "Guides & Documentation "
|
||||||
description: "Dive into our documentation with tutorials, examples, terminology, references and more."
|
description: "Dive into our documentation with guides, examples, terminology, references and more."
|
||||||
button: "See All Documentation"
|
button_documentation: "See All Documentation"
|
||||||
|
button_guides: "See All Guides"
|
||||||
categories:
|
categories:
|
||||||
|
|
||||||
- title: "Tutorials"
|
|
||||||
items:
|
|
||||||
- title: "Set Up & Run a Dev/Test Node"
|
|
||||||
link: "https://docs.bigchaindb.com/projects/server/en/latest/dev-and-test/setup-run-node.html"
|
|
||||||
- title: "Production Deployment Template"
|
|
||||||
link: "https://docs.bigchaindb.com/projects/server/en/latest/production-deployment-template/index.html"
|
|
||||||
|
|
||||||
- title: "Code Examples"
|
- title: "Code Examples"
|
||||||
items:
|
items:
|
||||||
- title: "Basic Usage Examples"
|
- title: "Basic Usage Examples"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: guide
|
layout: guide
|
||||||
|
|
||||||
title: Tutorial: Car Telemetry App
|
title: Car Telemetry App
|
||||||
description: Build your own car telemetry application
|
description: Build your own car telemetry application
|
||||||
image: image.jpg
|
image: image.jpg
|
||||||
---
|
---
|
@ -290,6 +290,15 @@ conn.postTransaction(txSigned)
|
|||||||
</div>
|
</div>
|
||||||
<div class="row row--wide">
|
<div class="row row--wide">
|
||||||
<div class="grid grid--full grid-small--fit grid--gutters">
|
<div class="grid grid--full grid-small--fit grid--gutters">
|
||||||
|
|
||||||
|
<div class="grid__col">
|
||||||
|
<h2 class="docs__title">Guides</h2>
|
||||||
|
<ul class="docs__list">
|
||||||
|
{% for guide in site.guides %}
|
||||||
|
<li><a href="/guides/{{ guide.title | slugify }}/">{{ guide.title }}</a></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% for category in content.docs.categories %}
|
{% for category in content.docs.categories %}
|
||||||
|
|
||||||
@ -308,7 +317,8 @@ conn.postTransaction(txSigned)
|
|||||||
</div>
|
</div>
|
||||||
<div class="row row--wide text-center">
|
<div class="row row--wide text-center">
|
||||||
<div class="docs__actions">
|
<div class="docs__actions">
|
||||||
<a class="btn btn-secondary" href="https://docs.bigchaindb.com">{{ content.docs.button }}</a>
|
<a class="btn btn-secondary" href="/guides">{{ content.docs.button_guides }}</a>
|
||||||
|
<a class="btn btn-secondary" href="https://docs.bigchaindb.com">{{ content.docs.button_documentation }}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user