devol.it/_includes/tiles.html

14 lines
505 B
HTML
Raw Normal View History

2016-08-26 01:15:01 +02:00
<section id="one" class="tiles">
{% for post in site.posts limit:site.home-tiles-count %}
<article>
<span class="image">
2016-08-26 01:19:51 +02:00
<img src="{{ post.image }}" alt="" />
2016-08-26 01:15:01 +02:00
</span>
<header class="major">
2016-08-26 02:07:38 +02:00
<h3><a href="{{ site.baseurl }}{{ post.url }}" class="link">{{ post.title }}</a></h3>
2016-08-26 01:19:51 +02:00
<p>{{ post.description }}</p>
2016-08-26 01:15:01 +02:00
</header>
</article>
{% endfor %}
</section>