Hi i have two problems, I have some articles with some tags not long ago It was working both the search and the list of tags but from one moment to another (do not touch anything related to this) stopped working and already tried everything but there is no solution the link to my repo is GitHub - Loaxert/loaxert.github.io: Mi web personal if anyone can help me thanks
See this FAQ and the three after it.
mv content/index.md content/_index.md
Also:
- Remove the following front matter from all files:
layout
,type
- Add some front matter to
content/tags/_index.md
(the file shouldnβt be empty) - Use either
hugo.toml
orconfig/_default/hugo.toml
(not both) - Fix your content structure
Current:
content/
βββ Challenges/
β βββ OnlyHacks/
β β βββ OnlyHacks.md
β βββ _index.md
βββ HTB/
β βββ index.md
βββ Maquinas/
β βββ Dog/
β β βββ dog.md
β βββ Topology/
β β βββ topology.md
β βββ _index.md
βββ tags/
β βββ _index.md
βββ index.md
Expected:
content/
βββ challenges/
β βββ _index.md
β βββ onlyhacks.md
βββ htb/
β βββ _index.md
βββ maquinas/
β βββ _index.md
β βββ dog.md
β βββ topology.md
βββ tags/
β βββ _index.md
βββ _index.md
A directory with an _index.md
is a branch bundle (a.k.a. βsectionβ) and can have descendants.
A directory with an index.md
file is a leaf bundle and has no descendants.
thanks man that works
1 Like
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.