When I try to access a .md file via the config.toml the hyperlink gives me a 404 error. I’ve gone to the developer’s Github repo and followed their instructions to fix that issue and I’m still getting an error. It’s only with the markdown files as well, if I have a link there to YouTube then it works perfectly fine.
the config.toml file has
[Params.Tree]
use = true
folderName = "my_activity"
files = [
["~/About Me$", "./content/post/aboutme.md"],
...
]
The markdown file contains
---
title: "About Me"
date: 2022-04-24T14:26:22-04:00
draft: false
---
# it works!!
On the Github to the template, it says this
- Post does not show up (return 404 not found)
- There are two possible causes for this.
- Forgot to add -D (–buildDrafts) as an argument to the hugo command
- The front matter of the post’s .md file has “draft: true” set.
- There are two possible causes for this.
but neither of those things have worked so I’m lost on where to go.