art/_includes/tiles.html
2016-08-26 00:07:38 +00:00

13 lines
505 B
HTML

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