summaryrefslogtreecommitdiffstats
path: root/exampleSite/config/_default/menus.yaml
diff options
context:
space:
mode:
authorSerghei Iakovlev <egrep@protonmail.ch>2022-07-09 13:26:58 +0200
committerGitHub <noreply@github.com>2022-07-09 13:26:58 +0200
commit0942efbdf7fb3573517b2f7e52803c3982529caf (patch)
tree26582d034e4e3449c403fe5e0b9a80283dec2948 /exampleSite/config/_default/menus.yaml
parent46e8edfce3738ea14388546ac8690144b7633bb3 (diff)
parentb3c39de2e5265cb81d0268d08c0cd4cb47a93f0d (diff)
downloadgohugo-theme-ed-0942efbdf7fb3573517b2f7e52803c3982529caf.tar.gz
Merge pull request #10 from sergeyklay/feature/update-config
Update config for exampleSite
Diffstat (limited to 'exampleSite/config/_default/menus.yaml')
-rw-r--r--exampleSite/config/_default/menus.yaml53
1 files changed, 53 insertions, 0 deletions
diff --git a/exampleSite/config/_default/menus.yaml b/exampleSite/config/_default/menus.yaml
new file mode 100644
index 0000000..8111fbb
--- /dev/null
+++ b/exampleSite/config/_default/menus.yaml
@@ -0,0 +1,53 @@
+# For more see https://gohugo.io/content-management/menus/
+
+main: # sections in the website sidebar
+ - identifier: home # section id
+ name: Home # section display title
+ url: / # path to the section
+ weight: 1 # order of sections
+
+ - identifier: about
+ name: About
+ url: /about/
+ weight: 2
+
+ - identifier: credits
+ name: Credits
+ url: /credits/
+ weight: 3
+
+ - identifier: documentation
+ name: Documentation
+ url: /documentation/
+ weight: 4
+
+ - identifier: search
+ name: Search
+ url: /search/
+ weight: 5
+
+ - identifier: contact
+ name: Contact
+ url: /contact/
+ weight: 6
+
+ - identifier: github
+ name: GitHub Project
+ url: 'https://github.com/sergeyklay/gohugo-theme-ed/'
+ weight: 20
+ params:
+ external: true
+
+feeds:
+ - identifier: rss
+ name: RSS 2.0
+ url: /feeds/feed.rss.xml
+ weight: 1
+ - identifier: atom
+ name: Atom
+ url: /feeds/feed.atom.xml
+ weight: 2
+ - identifier: json
+ name: Json Feed
+ url: /feeds/feed.json
+ weight: 3