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