Skip to content
Snippets Groups Projects
post-list-frontpage.html 351 B
	<section class="section  typeset">
		<ul class="list  list--posts">
			{% assign counter = 0-%}
			{% assign frontpage_articles = (site.posts | where: "frontpage" , "true") -%}
			{% for page in frontpage_articles limit:10 -%}
				{% include post-list-article.html -%}
				{% assign counter = counter | plus:1 %}
			{% endfor -%}
		</ul>
	</section>