ÚKLID TIME
parent
95b1abed30
commit
157e562bf3
@ -0,0 +1,10 @@
|
|||||||
|
{% extends 'layout/base.html' %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="important_subwrap">
|
||||||
|
<section class="side_panel">
|
||||||
|
{% block sidebar %}{% endblock %}
|
||||||
|
</section>
|
||||||
|
{% block main_content %}{% endblock %}
|
||||||
|
</div>
|
||||||
|
{% endblock content %}
|
@ -0,0 +1,7 @@
|
|||||||
|
{% extends 'layout/base_sidebar.html' %}
|
||||||
|
{% from '_includes.html' import render_tags with context %}
|
||||||
|
|
||||||
|
{% block sidebar %}
|
||||||
|
{{ render_tags() }}
|
||||||
|
{% endblock %}
|
||||||
|
|
@ -1,11 +1,6 @@
|
|||||||
{% extends 'layout/base.html' %}
|
{% extends 'layout/base_sidebar.html' %}
|
||||||
{% from '_includes.html' import render_sidenav with context %}
|
{% from '_includes.html' import render_sidenav with context %}
|
||||||
|
|
||||||
{% block content %}
|
{% block sidebar %}
|
||||||
<div class="important_subwrap">
|
|
||||||
<section class="side_panel">
|
|
||||||
{{ render_sidenav({"speedtest": ("Speedtest", "http://speedtest.cesnet.cz")}) }}
|
{{ render_sidenav({"speedtest": ("Speedtest", "http://speedtest.cesnet.cz")}) }}
|
||||||
</section>
|
{% endblock %}
|
||||||
{% block setting_content %}{% endblock %}
|
|
||||||
</div>
|
|
||||||
{% endblock content %}
|
|
||||||
|
Loading…
Reference in New Issue