From 7598ed1e798dbbcca541924d5be0b732b8d2ad62 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Thu, 23 Nov 2017 13:27:25 +0100 Subject: [PATCH] manual order for guides --- _src/_guides/key-concepts-of-bigchaindb.md | 1 + _src/_guides/tutorial-car-telemetry-app.md | 2 ++ _src/_guides/tutorial-token-launch.md | 1 + _src/_includes/sections/section-guides.html | 3 ++- _src/guides.html | 3 ++- 5 files changed, 8 insertions(+), 2 deletions(-) diff --git a/_src/_guides/key-concepts-of-bigchaindb.md b/_src/_guides/key-concepts-of-bigchaindb.md index c0c49ec..9c229fa 100644 --- a/_src/_guides/key-concepts-of-bigchaindb.md +++ b/_src/_guides/key-concepts-of-bigchaindb.md @@ -3,6 +3,7 @@ layout: guide title: Key concepts of BigchainDB tagline: Understand the transaction model of BigchainDB (identity, inputs, outputs, assets, transactions). +order: 1 --- - Introduction: How do we structure data? diff --git a/_src/_guides/tutorial-car-telemetry-app.md b/_src/_guides/tutorial-car-telemetry-app.md index 50e824f..6dfaf2b 100644 --- a/_src/_guides/tutorial-car-telemetry-app.md +++ b/_src/_guides/tutorial-car-telemetry-app.md @@ -4,6 +4,8 @@ layout: guide title: "Tutorial: How to create a digital twin of your car" tagline: Build a telemetry app to digitally track the mileage of a car header: header-car.jpg +order: 2 + learn: > - How BigchainDB can be used to record dynamic parameters of an asset diff --git a/_src/_guides/tutorial-token-launch.md b/_src/_guides/tutorial-token-launch.md index dbd3e2b..5b75a6b 100644 --- a/_src/_guides/tutorial-token-launch.md +++ b/_src/_guides/tutorial-token-launch.md @@ -4,6 +4,7 @@ layout: guide title: "Tutorial: How to launch your own token on BigchainDB" tagline: Learn how to use divisible assets in BigchainDB for token distribution events header: header-token.jpg +order: 3 learn: > - How to use divisible assets on BigchainDB diff --git a/_src/_includes/sections/section-guides.html b/_src/_includes/sections/section-guides.html index 38e5c7a..e6d1d8f 100644 --- a/_src/_includes/sections/section-guides.html +++ b/_src/_includes/sections/section-guides.html @@ -7,7 +7,8 @@
- {% for guide in site.guides limit: 4 %} + {% assign guides = site.guides | sort: 'order' %} + {% for guide in guides limit: 4 %}