You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.5 KiB
42 lines
1.5 KiB
{% extends "base.html" %} |
|
{% block content_title %}{% endblock %} |
|
{% block content %} |
|
{% if articles %} |
|
{% for article in articles %} |
|
{% if loop.index == 1 %} |
|
<aside id="featured" class="body"><article> |
|
<h1 class="entry-title"><a href="{{ SITEURL }}/{{ article.url |
|
}}">{{ article.title }}</a></h1> |
|
{{ article.content }} |
|
</article> |
|
</aside><!-- /#featured --> |
|
{% if loop.length > 1 %} |
|
<section id="content" class="body"> |
|
<h1>Další</h1> |
|
<hr /> |
|
<ol id="posts-list" class="hfeed"> |
|
{% endif %} |
|
{% else %} |
|
<li><article class="hentry"> |
|
<header> |
|
<h1><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink na {{ article.title|striptags }}">{{ article.title }}</a></h1> |
|
</header> |
|
|
|
<div class="entry-content"> |
|
{{ article.summary }} |
|
<a class="readmore" href="{{ SITEURL }}/{{ article.url }}">Číst více</a> |
|
</div><!-- /.entry-content --> |
|
</article></li> |
|
{% endif %} |
|
{% endfor %} |
|
</ol><!-- /#posts-list --> |
|
</section><!-- /#content --> |
|
{% else %} |
|
<section id="content" class="body"> |
|
<h2>Pages</h2> |
|
{% for page in pages %} |
|
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> |
|
{% endfor %} |
|
</section> |
|
{% endif %} |
|
{% endblock content %}
|
|
|