list of children sub pages in the index.md body #6088
StefanoCecere
started this conversation in
General
Replies: 2 comments 1 reply
-
You could use a custom template for that page and iterate through all pages with: <ul>
{% for page in nav.pages %}
<li>{{ page.title }}</li>
{% endfor %}
</ul> |
Beta Was this translation helpful? Give feedback.
0 replies
-
i already wrote some templates to have custom tables.. great. you confirm that MkDocs doesn't allow to inject "widgets" or shortcodes (like Hugo calls tham) directly in the .md file, right? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hi
I couldn't find a native way to embed the list of all subpages
for example in page https://2050x.org/spazio/riferimenti/personaggi/ i would like just the list of subpages like in the navigation
is it possible without a custom plugin?
i know someone was asking the same for blog posts (to have a preview list in other pages)
thank you!
Beta Was this translation helpful? Give feedback.
All reactions