balaramadurai / hugo-travelify-theme

Port of Aigars Silkalns's Wordpress theme Travelify to Hugo. Demo -
http://balaramadurai.github.io
MIT License
39 stars 27 forks source link

nested menu sorted #11

Closed ohobby closed 6 years ago

ohobby commented 6 years ago

Hi,

nested menu normally sorted alphabetically. Is it possible to determine for yourself how it should be sorted or in which order it should be displayed?

Thanks, Oliver

balaramadurai commented 6 years ago

Hi Oliver, Thanks for your message. You can do it this way:

[[menu.main]]
    name  = "Contact2"
    url   = "/contact/"
    parent = "Contact"

[[menu.main]]
    name  = "Contact21"
    url   = "/contact/"
    parent = "Contact2"
    weight = 20

[[menu.main]]
    name  = "Contact22"
    url   = "/contact/"
    parent = "Contact2"
    weight = 10

[[menu.main]]
    name  = "Contact3"
    url   = "/contact/"
    parent = "Contact"

The weight can be used to use your own sort order.

Thanks Bala