ethandl.dev

The source for my website
git clone git://git.ethandl.dev/ethandl.dev
Log | Files | Refs | Submodules

menus.en.toml (1698B)


      1 # -- Main Menu --
      2 # The main menu is displayed in the header at the top of the page.
      3 # Acceptable parameters are name, pageRef, page, url, title, weight.
      4 # 
      5 # The simplest menu configuration is to provide:
      6 #   name = The name to be displayed for this menu link
      7 #   pageRef = The identifier of the page or section to link to
      8 #
      9 # By default the menu is ordered alphabetically. This can be
     10 # overridden by providing a weight value. The menu will then be
     11 # ordered by weight from lowest to highest.
     12 
     13 #[[main]]
     14 #name = "Blog"
     15 #pageRef = "posts"
     16 #weight = 10
     17 
     18 [[main]]
     19 name = "Projects"
     20 pageRef = "projects"
     21 weight = 10
     22 
     23 [[main]]
     24 name = "Git"
     25 pre = "code"
     26 url = "https://git.ethandl.dev"
     27 weight = 90
     28 
     29 [[main]]
     30 name = "GitLab"
     31 pre = "gitlab"
     32 url = "https://gitlab.com/lightningx10"
     33 weight = 90
     34 
     35 #[[main]]
     36 #  name = "Parent"
     37 #  weight = 20
     38 
     39 #[[main]]
     40 #  name = "example sub-menu 1"
     41 #  parent = "Parent"
     42 #  pageRef = "posts"
     43 #  weight = 20
     44 
     45 #[[main]]
     46 #  name = "example sub-menu 2"
     47 #  parent = "Parent"
     48 #  pageRef = "posts"
     49 #  weight = 20
     50 
     51 #[[subnavigation]]
     52 #  name = "An interesting topic"
     53 #  pageRef = "tags/interesting-topic"
     54 #  weight = 10
     55 
     56 #[[subnavigation]]
     57 #  name = "My Awesome Category"
     58 #  pre = "github"
     59 #  pageRef = "categories/awesome"
     60 #  weight = 20
     61 
     62 #[[main]]
     63 #  name = "Categories"
     64 #  pageRef = "categories"
     65 #  weight = 20
     66 
     67 #[[main]]
     68 #  name = "Tags"
     69 #  pageRef = "tags"
     70 #  weight = 30
     71 
     72 
     73 # -- Footer Menu --
     74 # The footer menu is displayed at the bottom of the page, just before
     75 # the copyright notice. Configure as per the main menu above.
     76 
     77 
     78 # [[footer]]
     79 #   name = "Tags"
     80 #   pageRef = "tags"
     81 #   weight = 10
     82 
     83 # [[footer]]
     84 #   name = "Categories"
     85 #   pageRef = "categories"
     86 #   weight = 20