I did arrive at a solution before I posted this, but I’m not sure how I got there.
I have a whole bunch of tags set up like this:
content/tags/docker/_index.md
exists
In the above file I have:
---
slug: "docker-tips-tricks-and-tutorials"
title: "Docker"
description: |
I've been using Docker since 2014. Along the way I've picked up a bunch of
Docker experience and best practices. Here's what I learned.
params:
heroTitle: "Docker Tips, Tricks and Tutorials"
---
Then I have this configuration:
taxonomies:
tag: "tags"
permalinks:
tags: "/blog/tag/:slug"
Here’s what’s working:
- All of the tags get displayed as “Docker” or whatever their title is
- I can access them at
/blog/tag/docker-tips-tricks-and-tutorials.html
Here’s what’s not working, all of these fail with REF_NOT_FOUND
:
{{% relref "/blog/tag/docker" %}}
{{% relref "/blog/tag/docker-tips-tricks-and-tutorials" %}}
Now, I did manage to figure out I have to do {{% relref "/tags/docker" %}}
but I don’t know why. I pretty much brute forced a solution and arrived at a solution by sheer luck and determination. What is the general takeaway here?