Implemented all mds on same level in sidebar

This commit is contained in:
2025-03-15 14:16:56 +01:00
parent c7c633621f
commit c264424464
3 changed files with 50 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
{% if local_md_files %}
<div class="local-md-files">
<h3>Local Markdown Files</h3>
<ul>
{% for item in local_md_files %}
<li><a href="{{ pathto(item.link) }}">{{ item.name }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}