24 lines
689 B
HTML
24 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 %}
|