forked from JetBrains/kotlin-web-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreference.html
More file actions
23 lines (18 loc) · 719 Bytes
/
reference.html
File metadata and controls
23 lines (18 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends 'base.html' %}
{% from 'inc/nav/side-tree-nav.html' import side_tree_nav %}
{% block styles %}
<link rel="stylesheet" href="{{ url_for('static', filename='reference.css')|autoversion }}">
{% endblock %}
{% block scripts %}
<script src="{{ url_for('static', filename='reference.js')|autoversion }}"></script>
{% endblock %}
{% block content %}
<div class="g-grid">
<article role="main" class="page-content g-9"{%- if site.contenteditable -%} contenteditable="true"{%- endif -%}>
{% include 'inc/edit-on-github-link.html' %}
{% block page_content %}
{{ page.html | safe }}
{% endblock %}
</article>
</div>
{% endblock %}