matrix.org/templates/page.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

15 lines
442 B
HTML

{% extends "skel.html" %}
{% block html_title %}Matrix.org - {{ page.title }}{% endblock html_title %}
{% block head_extra %}
{% if page.extra.meta_description %}
<meta name="description" content="{{ page.extra.meta_description }}">
{% endif %}
{% endblock head_extra %}
{% block content %}
<article class="content">
<header>
<h1>{{ page.title }}</h1>
</header>
{{ page.content | safe }}
</article>
{% endblock content %}