-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve navigation of top-level sections; closes #791
- Loading branch information
Showing
8 changed files
with
55 additions
and
31 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
+++ | ||
title = "About the project" | ||
template = "section-tree.html" | ||
template = "about.html" | ||
+++ |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
+++ | ||
title = "Why and how to join" | ||
template = "section-tree.html" | ||
template = "join.html" | ||
+++ |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
+++ | ||
title = "Workshops and events" | ||
template = "section-tree.html" | ||
template = "workshops.html" | ||
+++ |
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,10 @@ | ||
{% import "macros.html" as macros %} | ||
|
||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<h1>{{ section.title }}</h1> | ||
|
||
{% set data = load_data(path="content/navigation.yml") %} | ||
{{ macros::section_tree(navigation=data.navigation, section="About") }} | ||
{% endblock content %} |
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,10 @@ | ||
{% import "macros.html" as macros %} | ||
|
||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<h1>{{ section.title }}</h1> | ||
|
||
{% set data = load_data(path="content/navigation.yml") %} | ||
{{ macros::section_tree(navigation=data.navigation, section="Join") }} | ||
{% endblock content %} |
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
This file was deleted.
Oops, something went wrong.
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,10 @@ | ||
{% import "macros.html" as macros %} | ||
|
||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<h1>{{ section.title }}</h1> | ||
|
||
{% set data = load_data(path="content/navigation.yml") %} | ||
{{ macros::section_tree(navigation=data.navigation, section="Workshops and events") }} | ||
{% endblock content %} |