I want to achieve having a startpage that works independently from the numeric chapters. Just creating a new page does not work so I am a bit lost how to achieve that. Could someone please assist?
Hello @sabih, the Learn2 with Git Sync theme (a modified version of the Learn2 theme) does not really provide built-in support for something like that (from what I know).
Might hiding the Chapter #'s help? If so, you could do this by using the following CSS:
#sidebar ul.topics > li > a b
{
visibility: hidden;
}
Hi Paul,
appreciate your answer. I was afraid of that but though the CSS solution does well. Thank you very much.
Actually, there is one option which might meet your needs:
- Create a folder called
01.startpage
- Renumber the existing folders, starting at
02.
etc. - Create a markdown file in
01.startpage
calleddocs.md
- Enter your startpage content into the newly created file
docs.md
- Go to site config options and set your homepage to the new start page
Let me know if this works for you.