My about page does not work

Hello

On my content/about.md i got

---
title: "About"
date: 2023-08-10T10:57:34+02:00
draft: false
---

how are you

in my config.toml i got

[[menu.footer]]
name = "A propos"
url = "/about"

But when i go on the url localhost/about
I got a Page Not Found

Do you know why ?

You can check my repo github here

  1. Your template is empty, and therefor renders… nothing.

    https://github.com/wilonweb/hugo-blank-theme/blob/main/themes/sandbox/layouts/_default/single.html

  2. The “A propos” entry in your main menu points to “/a-propos” which doesn’t exist.

    https://github.com/wilonweb/hugo-blank-theme/blob/main/config.toml#L6-L8

Thanks a lot :slight_smile:

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.