vaga / hugo-theme-m10c

A minimalistic (m10c) blog theme for Hugo
https://themes.gohugo.io/hugo-theme-m10c/
MIT License
455 stars 280 forks source link

How to make tags? #62

Closed swpper closed 3 years ago

swpper commented 3 years ago

How to make tags(list and count the number of articles) like the demo blog at https://themes.gohugo.io//theme/hugo-theme-m10c/tags/

vaga commented 3 years ago

Code is here: https://github.com/vaga/hugo-theme-m10c/blob/master/layouts/_default/terms.html

You can add a link to this page in config.toml, here: https://github.com/vaga/hugo-theme-m10c/blob/master/exampleSite/config.toml#L12

swpper commented 3 years ago

Thank you! I know the reason, the .md file created by hugo new posts/example.md doesn`t have the tags property.

---
title: "Test3"
date: 2021-02-24T10:46:53+08:00
draft: true
---

I add it and it works.