Hugo isn't building my content

Good afternoon. I’ve been running into an issue with Hugo 0.110.0 Extended where it’s building only the index page, but is not building the subdirectory pages for contact and resume, it ignores them. This isn’t an issue with hugo server where it renders these pages fine. I am not clear on what the cause could be here, I have attempted to follow the docs to their best intent.

This is the output from hugo -v

hugo v0.110.0-e32a493b7826d02763c3b79623952e625402b168+extended windows/amd64 BuildDate=2023-01-17T12:16:09Z VendorInfo=gohugoio
INFO 2023/03/02 15:49:00 syncing static files to \

                   | EN
-------------------+-----
  Pages            | 14
  Paginator pages  |  0
  Non-page files   |  0
  Static files     | 11
  Processed images |  0
  Aliases          |  1
  Sitemaps         |  1
  Cleaned          |  0
Total in 138 ms

Project can be viewed here.

content/
├── contact/
│   └── index.md*
├── resume/
│   └── index.md*
├── contact.md*
├── index.md*
└── resume.md*

First, the asterisk (*) indicates that you have the execute bit set on these files. Not part of the problem, but…

Second, section pages (including the home page) must be named _index.md not index.md.

Third, use either a regular page (contact.md) or a page bundle (contact/index.md) but not both.

1 Like

I removed the bundles and set a section page, that generated the pages. Thanks!

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