devol.it/_includes/tiles.html

16 lines
560 B
HTML
Raw Normal View History

2016-08-26 01:15:01 +02:00
<section id="one" class="tiles">
2016-08-26 03:57:10 +02:00
{% unless site.tiles-source == "pages" %}
2016-08-26 03:51:44 +02:00
{% for post in site.posts limit:site.tiles-count %}
2016-08-26 03:49:43 +02:00
<article>
<span class="image">
2016-08-26 03:51:44 +02:00
<img src="{{ post.image }}" alt="" />
2016-08-26 03:49:43 +02:00
</span>
<header class="major">
2016-08-26 03:51:44 +02:00
<h3><a href="{{ site.baseurl }}{{ post.url }}" class="link">{{ post.title }}</a></h3>
<p>{{ post.description }}</p>
2016-08-26 03:49:43 +02:00
</header>
</article>
{% endfor %}
2016-08-26 03:57:24 +02:00
{% endunless %}
2016-08-26 01:15:01 +02:00
</section>