代码之家  ›  专栏  ›  技术社区  ›  Rich Ashworth

如何为雨果中的每种内容类型添加菜单

  •  0
  • Rich Ashworth  · 技术社区  · 6 年前

    hugo 地点:

    content/
       - posts/
          - some_post.md
       - talks
          - some_talk.md
       about.md
    

    我想要 main posts talks . 目前我可以添加菜单项 about ,通过添加 menus = main 但是,对于前面的问题,我希望 帖子 会谈

    0 回复  |  直到 6 年前
        1
  •  0
  •   Rich Ashworth    6 年前

    事实证明,使用 menu 配置 config.toml . 这个 weight

    [menu]
    
      [[menu.main]]
        identifier = "home"
        name = "home"
        url = "/"
        weight = 10
    
      [[menu.main]]
        identifier = "blog"
        name = "blog"
        url = "/post/"
        weight = 20
    
      [[menu.main]]
        identifier = "talks"
        name = "talks"
        url = "/talks/"
        weight = 30
    
      [[menu.main]]
        identifier = "about me"
        name = "about me"
        url = "/about/"
        weight = 40