Replies: 1 comment
-
Hey, is it resolved? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
here is a example diagram of my hugo site:
.
├── content/
│ └── posts/
| ├── a/
| | ├──_index.md
| | ├──1.md
| | └──2.md
| ├── b/
| | ├──_index.md
| | ├──3.md
| | └──4.md
| ├── 5.md
| └── 6.md
I set weight at the front matter of every markdown file in this order:
a/_index > 1 > 2 > b/index > 3 > 4 > 5 >6
For the page www.example.com/posts, I am expacting that the listing would be in order
but what the site give me is:
Is there any way that the listing would be in the order I want? How could we weight across single content page and content folder page?
Beta Was this translation helpful? Give feedback.
All reactions