Skip to content
Snippets Groups Projects
post-list.html 456 B
{% if paginator.posts -%}
	<section class="section  typeset">
		<ul class="list  list--posts">
			{% for page in paginator.posts -%}
				{% include post-list-article.html -%}
			{% endfor -%}
		</ul>
		{% include post-pagination.html -%}
	</section>
{% else -%}
	<section class="section  typeset">
		<ul class="list  list--posts">
			{% for page in site.posts -%}
				{% include post-list-article.html -%}
			{% endfor -%}
		</ul>
	</section>
{% endif -%}