mirror of
https://github.com/matrix-org/matrix.org.git
synced 2026-01-11 20:07:22 +00:00
* 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>
18 lines
581 B
HTML
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> – {{ subsection.extra.summary }}</li>
|
|
{% endfor %}
|
|
{% for page in section.pages %}
|
|
<li><a href="{{ page.path }}">{{ page.title }}</a> – {{ page.extra.summary }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock content %}
|