{% assign posts = site.lessons | sort: date %}
{% if posts and site.last_post_on_index %}
{% assign post = posts | last %}
{% include post-full.html %}
{% endif %}
{% if posts.size > 1 and site.last_post_on_index %}
Předchozí lekce
{% endif %}
{% for post in posts reversed %}
{% if forloop.index0 == 0 and site.last_post_on_index %}
{% continue %}
{% endif %}
-
{{ post.date | date: "%-d. %-m. %Y" }}
{% endfor %}