feat(website): add content structure files

This commit is contained in:
Alexander Navarro 2024-12-26 13:18:50 -03:00
parent 9c6d935069
commit 7af58fe829
35 changed files with 214 additions and 18 deletions

View file

@ -0,0 +1,18 @@
<ul>
<li>
<a href="/">Overview</a>
</li>
{% for item in get_taxonomy(kind="section") | get(key="items") %}
<li>
<a href="{{ get_url(path="@/" ~ item.slug ~ "/_index.md") }}">{{ item.name | title }}</a>
<ul class="msp-d-none">
{% for page in item.pages %}
<li>
<a href="{{ page.permalink }}">{{ page.title | default(value=page.slug) | title }}</a>
</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>