Two ways we can set multiple 'tags' in our front matter
- We can set multiple
tags
in a single linetitle: Eleventy tags
tags: ["eleventy", "web-development"] - Or in multiple lines
title: Eleventy tags
tags:
- eleventy
- web-development
... Cool, now we know.