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>
15 lines
442 B
HTML
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 %}
|