-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,8 @@ defaults: | |
type: page | ||
values: | ||
layout: packages | ||
- scope: | ||
path: tutorials | ||
type: page | ||
values: | ||
layout: tutorials |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
- title: Quick start | ||
items: | ||
- id: tutorial_getting_started | ||
title: Getting started | ||
|
||
- title: Basic | ||
items: | ||
- id: tutorial_basic_01 | ||
title: Tutorial 01 | ||
- id: tutorial_basic_02 | ||
title: Tutorial 02 | ||
- id: tutorial_basic_03 | ||
title: Tutorial 03 | ||
|
||
- title: Advanced | ||
items: | ||
- id: tutorial_advanced_01 | ||
title: Tutorial 01 | ||
- id: tutorial_advanced_02 | ||
title: Tutorial 02 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<nav> | ||
<!-- Docs Nav --> | ||
{% for section in site.data.nav_tutorials %} | ||
<div class="nav-sidebar"> | ||
<h3>{{ section.title }}</h3> | ||
<ul> | ||
{% for item in section.items %} | ||
{% if page.url contains item.id %} | ||
<li class="active"> | ||
{% else %} | ||
<li> | ||
{% endif %} | ||
<a href="{{ item.id | prepend: site.baseurl }}.html">{{ item.title }}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
{% endfor %} | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
layout: default | ||
--- | ||
<div class="row"> | ||
<div class="col-md-3"> | ||
<nav> | ||
{% include nav_tutorials.html %} | ||
</nav> | ||
</div> | ||
<div class="col-md-9"> | ||
<div class="page-header"> | ||
<h1>{{page.title}} <small>{{page.subtitle}}</small></h1> | ||
</div> | ||
|
||
{{ content }} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
layout: packages | ||
title: Packages | ||
permalink: /packages/ | ||
order: 20 | ||
order: 30 | ||
nav: main | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
layout: default | ||
title: Publication | ||
permalink: /publication/ | ||
order: 30 | ||
order: 40 | ||
nav: main | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
layout: tutorials | ||
title: Tutorials | ||
permalink: /tutorials/ | ||
order: 20 | ||
nav: main | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
id: tutorial_basic | ||
title: Tutorial | ||
--- | ||
|
||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. |