I really love Hugo and I am migrating a wordpress blog.
The header of my .md files look like:
---
title: 'Some new post'
author: author
layout: post
date: 2017-02-20 07:00:39.0
url: /2017/02/20/new-test-post/
categories:
- cat 1
tags:
- tag 1
---
Up to Hugo 0.18.1, when I generated the site, it generated the folder structured to match the URL:
public/2017/02/20/new-test-post/
public/categories/
public/…
…
So the following works fine: localhost:1313/2017/02/20/new-test-post/
After upgrading to Hugo 0.19, this is not the case anymore. Taxonomies are created properly, but individual pages are not generated. The permalinks are correct too. Basically the pemalink for the example above would be localhost:1313/2017/02/20/new-test-post/, but there is not 2017 directory under the public one.
Is this a change introduced in Hugo 0.19 or could it be a possible bug?
Thanks and keep up the good work!