disable breadcumbs at first level

This commit is contained in:
Emmanuel Florent
2019-06-28 13:44:41 +02:00
parent 72a1bc54ea
commit 6d96d81d53
11 changed files with 15 additions and 5 deletions

View File

@@ -2,6 +2,7 @@
title: "Introduction"
aliases:
- /introduction
disable_breadcrumbs: true
---
Welcome to the Pycom documentation site. We recommend reading through all the sections to familiarise yourself with the various tools and features available to you to help you develop on your Pycom module.

View File

@@ -6,6 +6,7 @@ aliases:
- datasheets/introduction
- product-info
- chapter/datasheets
disable_breadcrumbs: true
---
The follow pages contain all information relating to each product, for examples: pinouts, spec sheets, relevant examples and notes.

View File

@@ -1,6 +1,6 @@
---
title: ""
aliases:
disable_breadcrumbs: true
---
The Pycom documentation aims to be straightforward and to adhere to typical Python documentation to allow for ease of understanding. However, there may be some unusual features for those not used to Python documentation or that are new to the MicroPython Language. This section of the documentation aims to provide clarity for any of the design specifics that might be confusing for those new to Python and this style of documentation.

View File

@@ -1,6 +1,7 @@
---
title: ""
aliases:
disable_breadcrumbs: true
---
This chapter describes modules (function and class libraries) that are built into MicroPython. There are a number of categories for the available modules:
@@ -14,4 +15,3 @@ This chapter describes modules (function and class libraries) that are built int
This documentation in general aspires to describe all modules and functions/classes which are implemented in MicroPython. However, MicroPython is highly configurable, and each port to a particular board/embedded system makes available only a subset of MicroPython libraries. For officially supported ports, there is an effort to either filter out non-applicable items, or mark individual descriptions with “Availability:” clauses describing which ports provide a given feature. With that in mind, please still be warned that some functions/classes in a module (or even the entire module) described in this documentation may be unavailable in a particular build of MicroPython on a particular board. The best place to find general information of the availability/non-availability of a particular feature is the “General Information” section which contains information pertaining to a specific port.
Beyond the built-in libraries described in this documentation, many more modules from the Python standard library, as well as further MicroPython extensions to it, can be found in the [micropython-lib](https://github.com/micropython/micropython-lib) repository.

View File

@@ -9,6 +9,8 @@ aliases:
- gettingstarted
- getting-started/introduction
- chapter/gettingstarted/introduction
disable_breadcrumbs: true
---
So, you've decided to order a Pycom development module. Firstly we would like to congratulate you in making an excellent decision. If you haven't yet placed your order we highly recommend you check out the [products](/products) page before you place your order to ensure you know which accessories you might require.

View File

@@ -4,6 +4,7 @@ aliases:
- products.html
- products.md
- chapter/products
disable_breadcrumbs: true
---
## Pycom Products

View File

@@ -2,6 +2,7 @@
title: ""
aliases:
- pybytes/introduction
disable_breadcrumbs: true
---
[![pybytes](/gitbook/assets/pybytes/introduction/pybytes_logo.png)](https://pybytes.pycom.io/?utm_source=docs&utm_medium=web&utm_campaign=pybytes-introduction)

View File

@@ -1,6 +1,7 @@
---
title: ""
aliases:
disable_breadcrumbs: true
---
In addition to the Expansion Board, Pycom also offers three additional sensor boards, which are ideal for quickly building a fully functioning IoT solution! Whether the application is environment sensing or asset tracking, these additional boards support a variety of sensors.
@@ -74,4 +75,3 @@ All of the included sensors are connected to the Pycom device via the I2C interf
You can find the datasheet and more info here:
{{% refname "../datasheets/boards/pyscan.md" %}}

View File

@@ -1,6 +1,7 @@
---
title: ""
aliases:
disable_breadcrumbs: true
---
![](/gitbook/assets/tutorialsicon%20%281%29.png)
@@ -14,4 +15,3 @@ General Pycom tutorials contains tutorials that may be run on any Pycom device,
Before starting, ensure that any Pycom devices are running the latest firmware; for instructions see [Firmware Updates](/gettingstarted/installation/firmwaretool).
The source code for these tutorials, along with the required libraries can be found in in the [pycom-libraries](https://github.com/pycom/pycom-libraries) repository.

View File

@@ -1,7 +1,9 @@
{{ define "main" }}
<v-card>
<v-card-text>
{{ partial "breadcrumb_recursive.html" (dict "menu" .Site.Menus.main "page" . ) }}
{{ if not .Params.disable_breadcrumbs }}
{{ partial "breadcrumb_recursive.html" (dict "menu" .Site.Menus.main "page" . ) }}
{{ end }}
<h1>{{- .Title -}}</h1>
{{- .Content -}}
<ul>

View File

@@ -1,7 +1,9 @@
{{ define "main" }}
<v-card>
<v-card-text>
{{ if not .Params.disable_breadcrumbs }}
{{ partial "breadcrumb_recursive.html" (dict "menu" .Site.Menus.main "page" . ) }}
{{ end }}
<h1 class="mt-0 pt-0">{{- .Title -}}</h1>
{{- .Content -}}
</v-card-text>