art/_includes/tiles.html
2016-08-25 23:15:01 +00:00

13 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>