forked from JetBrains/kotlin-web-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.html
29 lines (24 loc) · 808 Bytes
/
api.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends 'base.html' %}
{% block scripts %}
<script src="{{ url_for('static', filename='api.js')|autoversion }}"></script>
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ url_for('static', filename='api.css')|autoversion }}">
{% endblock %}
{% set docsNavBack={
"url": "/docs/home.html",
"text": "Kotlin Docs"
} %}
{% block content %}
<div class="g-grid">
<div class="api-layout">
<div class="api-layout_button-box">
<a class="scroll-button-back" href="/docs/home.html">← Docs</a>
<button class="scroll-button-top"></button>
</div>
<article role="main" class="page-content g-9">
{{ page.content | safe }}
</article>
</div>
</div>
{% endblock %}