matrix.org/templates/ecosystem.html
Moritz Stückler d66ea87056
fix: clipped information banner on small viewports (#2878)
* fix: clipped information banner on small viewports

Signed-off-by: Moritz Stückler <moritz@bitbetter.de>

* fix: remove unused css

Signed-off-by: Moritz Stückler <moritz@bitbetter.de>

* fix: remove empty lines

* fix: remove empty lines

* fix: remove empty lines

* fix: remove empty lines

* fix: show toc on mobile

* fix: toc order

* fix: wrong order

* Update sass/_docs.scss

Co-authored-by: Kim Brose <2803622+HarHarLinks@users.noreply.github.com>

* Update sass/_docs.scss

Co-authored-by: Kim Brose <2803622+HarHarLinks@users.noreply.github.com>

---------

Signed-off-by: Moritz Stückler <moritz@bitbetter.de>
Co-authored-by: Kim Brose <2803622+HarHarLinks@users.noreply.github.com>
2025-08-14 11:00:44 +02:00

18 lines
581 B
HTML

{% extends "section.html" %}
{% block content %}
<div class="content">
<header>
<h1>{{ section.title }}</h1>
</header>
<ul>
{% for subsection_path in section.subsections %}
{% set subsection = get_section(path=subsection_path) %}
<li><a href="{{ subsection.path }}">{{ subsection.title }}</a> &ndash; {{ subsection.extra.summary }}</li>
{% endfor %}
{% for page in section.pages %}
<li><a href="{{ page.path }}">{{ page.title }}</a> &ndash; {{ page.extra.summary }}</li>
{% endfor %}
</ul>
</div>
{% endblock content %}