1
0
mirror of https://github.com/devolitalia/forty-jekyll-theme synced 2025-01-08 06:15:29 +01:00
devol.it/_includes/tiles.html
2016-08-25 23:15:01 +00:00

14 lines
487 B
HTML

<section id="one" class="tiles">
{% for post in site.posts limit:site.home-tiles-count %}
<article>
<span class="image">
<img src="{{ page.image }}" alt="" />
</span>
<header class="major">
<h3><a href="{{ page.url }}" class="link">{{ page.title }}</a></h3>
<p>{{ page.description }}</p>
</header>
</article>
{% endfor %}
</section>