fix the order of the site nav

This commit is contained in:
rick olson 2019-07-02 07:43:06 -06:00
parent 6cd8c5dc35
commit 26c542d9e1
5 changed files with 6 additions and 1 deletions

View File

@ -18,6 +18,7 @@ theme_settings:
# Post navigation # Post navigation
post_navigation: true post_navigation: true
site_navigation_sort: 'order'
# BUILD SETTINGS # BUILD SETTINGS
markdown: kramdown markdown: kramdown

View File

@ -2,6 +2,7 @@
layout: documentation layout: documentation
title: "Adapters" title: "Adapters"
permalink: /adapters permalink: /adapters
order: 2
--- ---
The Faraday Adapter interface determines how a Faraday request is turned into The Faraday Adapter interface determines how a Faraday request is turned into

View File

@ -4,6 +4,7 @@ title: "Middleware"
permalink: /middleware permalink: /middleware
next_name: Available Middleware next_name: Available Middleware
next_link: ./list next_link: ./list
order: 3
--- ---
A `Faraday::Connection` uses a `Faraday::RackBuilder` to assemble a A `Faraday::Connection` uses a `Faraday::RackBuilder` to assemble a

View File

@ -2,6 +2,7 @@
layout: page layout: page
title: Team title: Team
permalink: /team/ permalink: /team/
order: 4
--- ---
<div id="loader"> <div id="loader">
@ -17,7 +18,7 @@ permalink: /team/
<h3 class="text-center">All the contributors</h3> <h3 class="text-center">All the contributors</h3>
<div id="contributors-list"></div> <div id="contributors-list"></div>
<h3 class="text-center">And some extra help</h3> <h3 class="text-center">And some extra help</h3>
<p class="text-center">Website and branding design: <a href="https://elelopic.design" target="_blank">Elena Lo Piccolo</a></p> <p class="text-center">Website and branding design: <a href="https://elelopic.design" target="_blank">Elena Lo Piccolo</a></p>
</div> </div>

View File

@ -4,6 +4,7 @@ title: "Usage"
permalink: /usage permalink: /usage
next_name: Customizing the Request next_name: Customizing the Request
next_link: ./customize next_link: ./customize
order: 1
--- ---
Make a simple `GET` request by requiring the Faraday gem and using `Faraday.get`: Make a simple `GET` request by requiring the Faraday gem and using `Faraday.get`: