view templates/default/doc/doc.html @ 8:dc880664a8ec

modernisation of the theme using Bulma
author Goffi <goffi@goffi.org>
date Fri, 16 Apr 2021 18:51:12 +0200
parents 09d66acc7c73
children 0e9e97777fe0
line wrap: on
line source

{% if not embedded %}{% extends 'base/base.html' %}{% endif %}

{% block body_wrapper %}
<div class="section has-background-white">
    <div class="container">
        <div class="message is-info">
            <div class="message-body">
                {% trans %}
                Please select the documentation that you want to see.
                {% endtrans %}
            </div>
        </div>
        <div class="tabs">
            <ul>
                {% for name in all_docs %}
                    <li class="{{"is-active" if name == doc_name}}"><a href="{{page_url}}/{{name}}">{{name}}</a></li>
                {% endfor %}
            </ul>
        </div>
    </div>
</div>
<iframe class="is-full-width" src="{{build_path}}doc/{{doc_name}}" onload="fitHeightToContent(this)"></iframe>
{% endblock body_wrapper %}