mirror of
https://github.com/matrix-org/matrix.org.git
synced 2026-01-16 23:13:50 +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>
23 lines
689 B
HTML
23 lines
689 B
HTML
{% extends "page.html" %}
|
|
{% block head_extra %}
|
|
<meta name="description" content="{{ page.extra.summary }}">
|
|
<noscript>
|
|
<link rel="stylesheet" href={{ get_url(path="/no-js.css" , cachebust=true) }} />
|
|
</noscript>
|
|
<script type="module" src={{ get_url(path="/js/sdks.js" , cachebust=true) }}></script>
|
|
<script type="module" src={{ get_url(path="/js/panel-selector.js" , cachebust=true) }}></script>
|
|
{% endblock head_extra%}
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<div class="hero-block">
|
|
<h1>{{ page.title }}</h1>
|
|
<p>{{ page.extra.summary }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content sdks-page">
|
|
|
|
{{ page.content | safe }}
|
|
|
|
</div>
|
|
{% endblock content %}
|