Skip to content

Commit

Permalink
disabled breadcumb on root level
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel Florent committed Jun 28, 2019
1 parent 90d6426 commit 2b65ccd
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 88 deletions.
1 change: 1 addition & 0 deletions content/advance/downgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ aliases:
- advance/downgrade.html
- advance/downgrade.md
- chapter/advance/downgrade

---

The firmware upgrade tool usually updates your device to the latest available firmware version. If you require to downgrade your device to a previous firmware there are two methods to achieve this.
Expand Down
4 changes: 4 additions & 0 deletions content/documents/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: documents
disable_breadcrumbs: true
---
2 changes: 1 addition & 1 deletion content/gettingstarted/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ aliases:
- getting-started
- gettingstarted/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.
Expand All @@ -32,4 +33,3 @@ Now that you familiar with programming your device you will no doubt be keen to
{{% hint style="info" %}}
You can navigate through this guide using the arrow buttons at the bottom of the page.
{{< /hint >}}

1 change: 1 addition & 0 deletions content/products.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ aliases:
- products.html
- products.md
- chapter/products
disable_breadcrumbs: true
---

Below you will find tables of all Pycom products. These tables illustrate the functionality of our various products, their compatibility with each other, as well as what accessories are required to utilise certain functionality.
Expand Down
1 change: 1 addition & 0 deletions content/pymakr/installation/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "Installation"
aliases:
disable_breadcrumbs: true
---

![](/gitbook/assets/pymakr-logo-1.png)
Expand Down
7 changes: 5 additions & 2 deletions content/pytrackpysense/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
---
title: ""
title: "Introduction"
aliases:
- pytrackpysense/introduction.html
- pytrackpysense/introduction.md
- chapter/pytrackpysense
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.
Expand Down Expand Up @@ -74,4 +78,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" %}}

80 changes: 0 additions & 80 deletions content/pytrackpysense/introduction.md

This file was deleted.

7 changes: 5 additions & 2 deletions content/tutorials/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
---
title: ""
title: "Introduction"
aliases:
- tutorials/introduction.html
- tutorials/introduction.md
- chapter/tutorials
disable_breadcrumbs: true
---

![](/gitbook/assets/tutorialsicon%20%281%29.png)
Expand All @@ -14,4 +18,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.

4 changes: 3 additions & 1 deletion layouts/_default/list.html
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
4 changes: 3 additions & 1 deletion layouts/_default/single.html
Original file line number Diff line number Diff line change
@@ -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 class="mt-0 pt-0">{{- .Title -}}</h1>
{{- .Content -}}
</v-card-text>
Expand Down
1 change: 0 additions & 1 deletion themes/doc-theme/static/css/doc-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ code {
color: #7800FF;
}


.v-window {
padding-top: 24px;
}
Expand Down

0 comments on commit 2b65ccd

Please sign in to comment.