newbie questions – “Cannot GET /post/” error.

Hi all,
I have started to work with the blackburn theme via victor-hugo.

I have followed the tutorials:


I have couple of newbie questions.

I have added about.md by the command hugo new about.md to the folder
site/content/about.md.

Similar, I have added a new post by the command hugo new post/first.md to the folder site/content/post/first.md.

I have added the following to the config.toml file:

[[menu.main]]
    name = "Posts"
    ...
    identifier = "post"
    url = "/post/"
  [[menu.main]]
    name = "About"
   ...
    identifier = "about"
    url = "/about/"

Unfortunately, when I click on the about link I’ve the following error:

Cannot GET /about/

Similar, when I click on the posts link I’ve the following error:

Cannot GET /post/

What is missed in my configuration?

I will appreciate any help,

Best regards,
Michael

Can you upload your code to a github repo and link it? This would help to see your code and configuration. One thing you could do is checking if hugo generates a post or about folder. Simply run hugo and check the newly generated public directory.
With your repo we can help you better as for now I don’t know what could be wrong.