-
Couldn't load subscription status.
- Fork 72
Open
Labels
enhancementNew feature or requestNew feature or request
Description
I have a content directory that looks like:
content
├———— _index.md
├———— about
| └———— index.md
└———— posts
├———— _index.md
├———— my-first-post.md
└———— my-second-post.md
and a config/_default/menus.toml file that has:
[[navbar]]
identifier = "posts"
name = "Posts"
url = "/posts/"
weight = 1
[[navbar]]
identifier = "about"
name = "About"
url = "/about/"
weight = 2I'm wondering if it's possible to
- display the tags of a given blogpost, for example
content/posts/my-first-post.md:
+++
title = 'My First Post'
date = 2024-06-08
tags = ["stats"]
+++
contentthis blogpost has the tag "stats", but it does not display in Posts or if I click on the actual post:
- My other question is it is possible to set up something in
Postsso a user could filter for a particular tag(for example, if someone wanted to read only blogposts pertaining to stats, they would filter by the"stats"tag)
Thank you!
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request