Using v0.72.0
on macOS. I am experiencing a weird permalink generation behaviour that has me stumped. Currently on my config.toml
:
[permalinks]
content = "/:year/:month/:day/:slug/"
All my content is under /content/
.
The entry/post example name and YAML header are:
Name: 2003-01-18-iraq-are-we-going-to-war.md
YAML:
---
date: 2003-01-18T18:14:57-05:00
title: "Iraq, are we going to war?"
tags: ["iraq","bush"]
categories: ["politics"]
description: ""
---
I would expect the generated site to be:
2003
|-> 01
|-> 18
|-> iraq-are-we-going-to-war
|-> index.html
Instead, I am getting:
/2003-01-18-iraq-are-we-going-to-war/
|-> index.html
What am I doing wrong?