kaapiandcode / hugo-goa

Simple Minimalistic Theme for Hugo
https://kaapiandcode.github.io/hugo-goa-demo/
MIT License
264 stars 128 forks source link

Next/Prev Order #112

Closed Wenqian1228 closed 1 year ago

Wenqian1228 commented 2 years ago

I found the Prev/Next Order does match with the weight you set in config>

For example here the order is: about -> experience -> publications -> others , however, after hugo rendering the pages, the order is messed, the about became the last, does anyone know why?

[[menu.main]]
    name = "About"
    identifier = "About"
    weight = 100
    url = "/about/"

[[menu.main]]
    name = "Experience"
    identifier = "Experience"
    weight = 200
    url = "/experience/"

[[menu.main]]
    name = "Publications"
    identifier = "Publications"
    weight = 300
    url = "/publications/"

[[menu.main]]
    name = "Others"
    identifier = "Others"
    weight = 400
    url = "/others/"