Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/content/content-and-customization/02-navigation-search/menu/_index.md')
-rw-r--r--exampleSite/content/content-and-customization/02-navigation-search/menu/_index.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/exampleSite/content/content-and-customization/02-navigation-search/menu/_index.md b/exampleSite/content/content-and-customization/02-navigation-search/menu/_index.md
index 2e1a91a..a80b8bc 100644
--- a/exampleSite/content/content-and-customization/02-navigation-search/menu/_index.md
+++ b/exampleSite/content/content-and-customization/02-navigation-search/menu/_index.md
@@ -21,27 +21,27 @@ Reminder : [subpages]({{%relref "content-and-customization/00-adding-content#sub
Bellow are all frontmatters options used to render a menu entry.\
Example from the current "Getting start" section.
-```toml
-+++
+```yaml
+---
# Menu label
-title = "Getting started"
+title: "Getting started"
# Hide this page from menu
-hidden = false
+hidden: false
# Prefix menu label with a text, an html...
-pre = ""
+pre: ""
# Suffix menu label with a text, an html...
-post = "👋"
+post: "👋"
# Display this before the menu entry
-head = "<hr/>"
+head: "<hr/>"
# Keep this menu opened by default
-alwaysopen = true
+alwaysopen: true
-+++
+---
```