@SamAdams,
I added tags to the frontmatter, and use them to denote project details. I use Templater for templates, and it gives me the ability to dynamically populate the Path tag. I use Dataview to display the status of my projects on my Workbench. This may not be the intended purpose, but the ability to add tags to the frontmatter allows me to use it as I see fit.
—
Aliases:
Tags: Project
Path: <% tp.file.folder(true) %>
Status: _Open
Priority: 1
—
```dataview
Table replace(Path, “Projects/”, “”) as Project, Status, Priority
From #Project
Where Status = “Open”
Sort Priority, Project
```
ce