-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding manon-docs hugo theme and support #91
Draft
jpbruinsslot
wants to merge
16
commits into
main
Choose a base branch
from
feat/hugo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 2 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
1945f5e
Start with hugo support
jpbruinsslot 5fad32f
Add section element to shortcodes
jpbruinsslot 94027c6
Setup layouts
jpbruinsslot e004cdf
Restructure doc structure
jpbruinsslot 8b4faa1
Update structure
jpbruinsslot 5cc2a64
Implement section-index
jpbruinsslot 4d91456
Make docs work with build tools
jpbruinsslot c2ef8fc
Implement language support
jpbruinsslot aedd4e0
Add breadcrumb and sidemenu
jpbruinsslot 205dbf9
Start with inserting current documentation
jpbruinsslot 4793312
Restructure for theme support
jpbruinsslot be2ae6d
Fixing sidemenu
jpbruinsslot 706672b
Fix code blocks
jpbruinsslot c853850
Remove old docs
jpbruinsslot aef2ba0
Merge branch 'main' into feat/hugo
jpbruinsslot 5f1c6bf
Update forms documentation
jpbruinsslot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,3 +1,4 @@ | ||
node_modules/ | ||
public/ | ||
resources/ | ||
static/ | ||
|
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,6 +1,18 @@ | ||
# manon-docs | ||
# Manon Docs | ||
|
||
## Introduction | ||
|
||
Uses [Hugo](https://gohugo.io/) to generate a static documentation site for | ||
manon. | ||
|
||
|
||
## Developing | ||
|
||
``` | ||
$ docker build -t manon-docs . | ||
$ docker run -it --rm -p 1313:1313 -v $(pwd):/site manon-docs server --bind=0.0.0.0 --baseURL=localhost:1313 | ||
``` | ||
``` | ||
|
||
### Updating the theme | ||
|
||
The theme is located in [themes/manon](themes/manon). |
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 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 |
---|---|---|
|
@@ -5,5 +5,3 @@ weight: 2 | |
description: > | ||
Componenten zijn ... | ||
--- | ||
|
||
# Components |
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 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 |
---|---|---|
|
@@ -5,5 +5,3 @@ weight: 1 | |
description: > | ||
Elementen zijn ... | ||
--- | ||
|
||
# Elementen |
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 |
---|---|---|
|
@@ -5,5 +5,3 @@ weight: 3 | |
description: > | ||
Hoe je een layout maakt | ||
--- | ||
|
||
# Layout |
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 |
---|---|---|
|
@@ -5,5 +5,3 @@ weight: 5 | |
description: > | ||
Hoe Manon te configureren | ||
--- | ||
|
||
# Maatwerk |
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 |
---|---|---|
|
@@ -5,5 +5,3 @@ weight: 4 | |
description: > | ||
Toegankelijkheid ondersteuning van Manon | ||
--- | ||
|
||
# Toegankelijkheid |
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 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 |
---|---|---|
|
@@ -3,5 +3,3 @@ title: "Documentatie" | |
linkTitle: "Documentatie" | ||
weight: 2 | ||
--- | ||
|
||
# Documentatie |
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,5 @@ | ||
node_modules/ | ||
public/ | ||
resources/ | ||
static/ | ||
.hugo_build.lock |
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,9 @@ | ||
# Manon Docs Theme | ||
|
||
## Using the theme | ||
|
||
Using the theme in a hugo site | ||
|
||
## Developing | ||
|
||
How to develop and update the theme |
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 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think using the
anchorize
filter makes the other filters unnecessary since it already sanitizes the input