2020-03-30 08:25:29 +00:00
|
|
|
<div id="content-wrapper" class="{% if single_page %}col-md-10{% else %}col-md-8{% endif %} p-2 p-md-5">
|
2020-05-06 19:36:50 +00:00
|
|
|
<div id="content" class="mt-md-n3">
|
2020-03-30 08:25:29 +00:00
|
|
|
{% if not single_page %}
|
2020-05-08 08:04:09 +00:00
|
|
|
{% include "templates/docs/machine-translated.html" %}
|
|
|
|
{{ page.content|adjust_markdown_html }}
|
2020-03-30 08:25:29 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if single_page and page.content %}
|
2020-04-09 20:50:39 +00:00
|
|
|
<script type="text/javascript" src="content.js?{{ config.extra.rev_short }}"></script>
|
2020-03-30 08:25:29 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
2020-05-08 08:04:09 +00:00
|
|
|
{% include "templates/docs/footer.html" %}
|
2020-03-30 08:25:29 +00:00
|
|
|
</div>
|
2020-04-09 20:50:39 +00:00
|
|
|
{% if single_page and page.content %}
|
|
|
|
<!-- BREAK -->
|
|
|
|
(function() {
|
|
|
|
{% for chunk in page.content|chunks %}
|
|
|
|
document.write({{ chunk|tojson|safe }});
|
|
|
|
{% endfor %}
|
|
|
|
})();
|
|
|
|
<!-- BREAK -->
|
|
|
|
{% endif %}
|