appernetic / hugo-nederburg-theme

Nederburg is a fast and secure hugo theme and is a port of the Tracks WP theme
Other
107 stars 89 forks source link

Customizing tags/categories #22

Closed ghost closed 6 years ago

ghost commented 6 years ago

Hi,

is there any way how to change the tags/categories? Adding new one or deleting existing one?

Thanks

appernetic commented 6 years ago

You add tags and categories in the markdown files. First make sure you have taxonomies in your config file (it should be there if you use the exampleSite config file):

[taxonomies] tag = "tags" category = "categories"

Then in the yaml front matter:

title: My article categories: [hugo, blog] tags: [hugo,content,static site generator]