Ú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">
|
{{ render_sidenav({"speedtest": ("Speedtest", "http://speedtest.cesnet.cz")}) }}
|
||||||
<section class="side_panel">
|
{% endblock %}
|
||||||
{{ render_sidenav({"speedtest": ("Speedtest", "http://speedtest.cesnet.cz")}) }}
|
|
||||||
</section>
|
|
||||||
{% block setting_content %}{% endblock %}
|
|
||||||
</div>
|
|
||||||
{% endblock content %}
|
|
||||||
|
@ -1,33 +1,28 @@
|
|||||||
{% extends 'layout/base.html' %}
|
{% extends 'layout/base_sidebar_tags.html' %}
|
||||||
{% from '_includes.html' import render_tags, render_pagination with context %}
|
{% from '_includes.html' import render_pagination with context %}
|
||||||
|
|
||||||
{% block content %}
|
{% block main_content %}
|
||||||
<div class="important_subwrap">
|
<section class="post_list">
|
||||||
<section class="side_panel">
|
<div class="posts">
|
||||||
{{ render_tags() }}
|
{% for post in posts %}
|
||||||
</section>
|
<figure style="{{ post.flex }}">
|
||||||
<section class="post_list">
|
<a href="{{ url_for('post.post_show', id=post.id) }}">
|
||||||
<div class="posts">
|
<img src="{{ post.url(path=post.image_url, endpoint='thumb') }}" alt="">
|
||||||
{% for post in posts %}
|
</a>
|
||||||
<figure style="{{ post.flex }}">
|
</figure>
|
||||||
<a href="{{ url_for('post.post_show', id=post.id) }}">
|
{% endfor %}
|
||||||
<img src="{{ post.url(path=post.image_url, endpoint='thumb') }}" alt="">
|
|
||||||
</a>
|
|
||||||
</figure>
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
<!-- <figure style="flex: 307.87 1 307.87px;">
|
<!-- <figure style="flex: 307.87 1 307.87px;">
|
||||||
<a href="#">
|
<a href="#">
|
||||||
<img src="/static/ryuzu/916993.png" alt="">
|
<img src="/static/ryuzu/916993.png" alt="">
|
||||||
</a>
|
</a>
|
||||||
<div class="thumb-info">
|
<div class="thumb-info">
|
||||||
<span>RyuZU²</span>
|
<span>RyuZU²</span>
|
||||||
<span>1920x1080</span>
|
<span>1920x1080</span>
|
||||||
<span>1.5M</span>
|
<span>1.5M</span>
|
||||||
</div>
|
</div>
|
||||||
</figure> -->
|
</figure> -->
|
||||||
</div>
|
</div>
|
||||||
{{ render_pagination('post.posts') }}
|
{{ render_pagination('post.posts') }}
|
||||||
</section>
|
</section>
|
||||||
</div>
|
{% endblock %}
|
||||||
{% endblock content %}
|
|
Loading…
Reference in New Issue