You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a directory structure like
content/example/
content/example/index.md
content/example/content.md
content/example/subexample/
content/example/subexample/index.md
content/example/subexample/content.md
content/example/subexample/row.md
(names changed to avoid direct reference to my project in question)
index.md are simple front-matter only files with a title and a date
content.md in the root example directory is just plain text paragraphs with a simple set of front matter
-- date is just the creation date from "hugo new"
-- fragment = "content"
-- weight = 100
-- title = "Qwerty"
content.md in the subexample directory is basically the same as the content.md in the main example directory, only with some different example text for the body paragraphs and a different title
row.md is an Item fragment with some text and is pointing to an image file in my Static/images directory.
Instead of generating a page at
mysite.com/example/
and
mysite.com/example/subexample/
The row.md fragment is "absorbed" into the page showing at
mysite.com/example/
and
mysite.com/example/subexample/ only displays a white blank page. (View Source indicates it's only transmitting a set of empty PRE tags.)
What you expected to happen:
Fragments at the level of the top level page to apply to the top level, and fragments at the sublevel to apply to the sublevel page
How to reproduce it (as minimally and precisely as possible):
Clone the example Syna repository, add a new folder in there with files similar to those above, then run hugo server
Anything else we need to know?:
Environment:
Syna Theme version: v0.17.3
Hugo version: v0.80.0 extended
Others: Running on hugo server locally
The text was updated successfully, but these errors were encountered:
Subsections work differently in syna as we have to identify a parent page as an actual page compared to a single page made up of various fragments in subdirectories.
In your content/example/directory move index.md to _index.md, that should fix the issue in my view. Hard to check out without a working code example.
Also check out the exampleSite and the various subdirectories included in there.
Changing index.md to _index.md broke things in a different way.
I did look at the exampleSite, and have managed to cargo-cult my way to something sort-of-working, but I don't actually understand what causes one behavior or another.
Is this a BUG REPORT or FEATURE REQUEST?:
bug (or I'm unsure about feature?)
What happened:
I'm creating a site with Syna, and one of the things I'm trying to do is pages with subpages under them in the URL schema.
The idea would be that I'd have URLs something like
www.example.com/alpha/
www.example.com/alpha/ichi/
www.example.com/alpha/ni/
www.example.com/alpha/san/
www.example.com/beta/
www.example.com/beta/hitotsu/
www.example.com/beta/futatsu/
etc.
Other Hugo sites seem to be able to do this just OK.
I tried to make this with Syna but got strange results.
I have a directory structure like
content/example/
content/example/index.md
content/example/content.md
content/example/subexample/
content/example/subexample/index.md
content/example/subexample/content.md
content/example/subexample/row.md
(names changed to avoid direct reference to my project in question)
-- date is just the creation date from "hugo new"
-- fragment = "content"
-- weight = 100
-- title = "Qwerty"
Instead of generating a page at
mysite.com/example/
and
mysite.com/example/subexample/
The row.md fragment is "absorbed" into the page showing at
mysite.com/example/
and
mysite.com/example/subexample/ only displays a white blank page. (View Source indicates it's only transmitting a set of empty PRE tags.)
What you expected to happen:
Fragments at the level of the top level page to apply to the top level, and fragments at the sublevel to apply to the sublevel page
How to reproduce it (as minimally and precisely as possible):
Clone the example Syna repository, add a new folder in there with files similar to those above, then run hugo server
Anything else we need to know?:
Environment:
hugo server
locallyThe text was updated successfully, but these errors were encountered: