mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 09:46:57 +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:
|
||||
title: "Documentation & Examples"
|
||||
description: "Dive into our documentation with tutorials, examples, terminology, references and more."
|
||||
button: "See All Documentation"
|
||||
title: "Guides & Documentation "
|
||||
description: "Dive into our documentation with guides, examples, terminology, references and more."
|
||||
button_documentation: "See All Documentation"
|
||||
button_guides: "See All Guides"
|
||||
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"
|
||||
items:
|
||||
- title: "Basic Usage Examples"
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: guide
|
||||
|
||||
title: Tutorial: Car Telemetry App
|
||||
title: Car Telemetry App
|
||||
description: Build your own car telemetry application
|
||||
image: image.jpg
|
||||
---
|
@ -290,6 +290,15 @@ conn.postTransaction(txSigned)
|
||||
</div>
|
||||
<div class="row row--wide">
|
||||
<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 %}
|
||||
|
||||
@ -308,7 +317,8 @@ conn.postTransaction(txSigned)
|
||||
</div>
|
||||
<div class="row row--wide text-center">
|
||||
<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>
|
||||
</section>
|
||||
|
Loading…
Reference in New Issue
Block a user