1. 程式人生 > >hexo categories和tags頁面不顯示解決辦法

hexo categories和tags頁面不顯示解決辦法

方法一:

scaffolds/draft.md

---
title: {{ title }}
tags: {{ tags }}
---

scaffolds/post.md

---
title: {{ title }}
date: {{ date }}
tags: {{ tags }}
---

tags/index

---
title: Tagcloud
date: 2017-04-26 17:47:43
type: "tags"
layout: "tags"
---

方法二:

  1. 預設是沒有 categories 和 tags 的需要

hexo new page "tags"
hexo new page "categories"
  1. 編輯 /tags/index.md /categories/index.md
type: "tags"
layout: "tags"


type: "categories"
layout: "categories"