惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
IT之家
IT之家
B
Blog
博客园_首页
博客园 - 司徒正美
有赞技术团队
有赞技术团队
博客园 - 聂微东
I
InfoQ
美团技术团队
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog

HUGO - Latest posts

Systems & Signals — My Hugo DevOps Portfolio with Focus Tools, Matrix Mode and PWA Migrating Hugo from Netlify to Cloudflare Workers (Handling Contact Forms, D1, Turnstile & Analytics) AmazingRise/hugo-theme-diary broken with new hugo version Chroma YAML lexer issue Locate the template source for a deprecation warning Highlight template code in discourse forum using highlightjs-hugo Automatic Syntax Highlighting for Hugo templates Hugo v0.166.0 released Tailwind Labs is joining Shopify ExampleSite and Tailwind Introducing Stacknote — an editorial Hugo theme for technical blogs Impressed returning to Hugo! How to associate / connect between content files (md) and data files Multilingual links have changed Hugo's modular configuration syntax and strict validation are still in conflict How to left justify content in all pages using Ananke Executing Hugo builds inside of Go with a custom config? "Hero Images" on website's front page only (with carousell - rotates several images) How to mount a node_modules folder? What should I name a Hugo-related IDE? How to deal with image processing failures when updating to 0.165.0? Question about the multi-dimensional content model Is there any other base template Post-processing of file types? (Automatic SVG text-to-path) What is the standard way to make page bundle images show up in a full text RSS feed? Hugo/Netlify config for google recaptcha keys Summer poll 2021. Do you use the <meta name="generator" > tag? Website Builds Successfully but Published Pages Continue Serving Outdated Generated Content Validation for links <a href="#xyz"> to anchors <a id="xyz"> in the same page Changed /content/posts to /content/post, gives a 404 page and old theme I uninstalled is used. Also localhost:1313 was used instead of BaseURL in /content/posts
Menu nesting doesn't work, hugo v0.165.0 (ananke theme, b...
Esbeeb · 2026-08-26 · via HUGO - Latest posts

I’m looking at the nested-menu-related documentation here: I use the code example as shown, in my hugo.toml: baseURL = &#39;https://example.com/&#39; locale = &#39;en-us&#39; title = &#39;My Site&#39; theme = &#39;ananke&#39; [menus] [[menus.main]] name = &#39;Products&#39; pageRef = &#39;/products&#39; weight = 10 [[menus.main]] name = &#39;Hardware&#39; pageRef = &#39;/products/hardware&#39; parent = &#39;Products&#39; weight = 1 [[menus.main]] name = &#39;Software&#39; pageRef = &#39;/products/software&#39; parent = &#39;Products&#39; ...