gethugothemes / liva-hugo

Liva is a personal blog template powered by Hugo.
https://gethugothemes.com/products/liva/?utm_source=liva_github&utm_medium=referral&utm_campaign=github_theme_about
MIT License
275 stars 237 forks source link

How to add home button on nav? #28

Closed kucw closed 4 years ago

kucw commented 4 years ago

Due to the code changes, the home button is missing from the top-right corner nav. How can we put it back? It's really useful for our team members to get back to home page while viewing posts. Thanks!

somratpro commented 4 years ago

main menu

[[menu.main]] name = "Home" URL = "/" weight = 1

[[menu.main]] name = "About" URL = "about" weight = 2

[[menu.main]] name = "Post" URL = "blog" weight = 3

[[menu.main]] name = "Contact" URL = "contact" weight = 4

kucw commented 4 years ago

It works, thanks!