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

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 %}