HEXO-踩坑日記

大家遇到的可能不一樣

網路上也有很多文章,我只寫對我有效的部分

tags跟categories頁面需要手動生成

1
2
hexo new page "tags"
hexo new page "categories"

接著編輯source/tags/index.md,新加入type跟layout兩行,comments那行是取消評論的,隨各自需求,看了幾篇文章都沒有寫到layout部分,我加上就有了

1
2
3
4
5
6
7
---
title: 分類
date: 2023-02-20 12:11:52
type: "tags"
layout: "tags"
comments: false
---

categories的部份同tags,把tags的部份改成categories就好