啟動 hugo server -D,邊閱讀本頁邊檢視 localhost:1313
選單是Hugo所有主題(theme)的重頭戲,更多資訊可參閱 Hugo 官網 Menus | Hugo
在 \content (省略了D:\MyData\blog) 資料夾內增加兩個子資料夾 categories, tags
將代碼存至 \content\categories\_index.md
---
title: "分類"
layout: categories
summary: categories
---
將代碼存至 \content\tags\_index.md
---
title: "標籤"
layout: tags
summary: tags
---
在 \content ) 資料夾內增加三個檔案 archives.md, search.md, about.md,內容如下:
archives.md
---
title: "歸檔"
layout: "archives"
summary: "Archive"
---
search.md
---
title: "搜尋"
layout: "search"
summary: "search"
---
about.md(修改自 Sulv’s Blog)
---
title: "關於"
layout: about
date: 2023-09-12
hidemeta: true
description: ""
draft: false # 是否為草稿
comments: false
reward: false
showToc: false # 顯示目錄
TocOpen: false # 自動展開目錄
disableShare: true # 底部不顯示分享欄
showbreadcrumbs: false
searchHidden: true
cover:
image: ""
caption: ""
alt: ""
relative: false
---
About
編輯 config.yml 第113至124行
- identifier: categories
name: categories
url: /categories/
weight: 10
- identifier: tags
name: tags
url: /tags/
weight: 20
- identifier: example
name: example.org
url: https://example.org
weight: 30
成為
- identifier: archives
name: 歸檔
url: /archives/
weight: 10
- identifier: categories
name: 分類
url: /categories/
weight: 20
- identifier: tags
name: 標籤
url: /tags/
weight: 30
- identifier: about
name: 關於
url: /about/
weight: 40
- identifier: search
name: 搜尋
url: /search/
weight: 50
outputs:
home:
- HTML
- RSS
- JSON # is necessary
最後5行因 search 而增加
使用 Font Awesome ( 要先安裝) 的方法,可參閱 Menu Example | Hugo
雖然可以使用複製、貼上功能編輯 config.yml,強烈建議自己作一遍,因為你可能會增刪。增刪時要非常注意格式,例如:- identifier: archives 前面有四個空白鍵「space」,不可多也不可少,文章的 Front Matter 有空白鍵也是,才不致 Error
\content 內的子資料夾都要建立 _index.md 檔,將代碼存至 \content\posts\_index.md
---
title: "文章"
# description: ""
hidemeta: true # 是否隱藏文章的原訊息,如發佈日期、作者等
---