1
0
mirror of https://github.com/devolitalia/forty-jekyll-theme synced 2025-01-08 22:31:26 +01:00
devol.it/_includes/tiles.html

16 lines
552 B
HTML
Raw Normal View History

2016-08-26 01:15:01 +02:00
<section id="one" class="tiles">
2016-08-26 04:16:43 +02:00
{% if site.tiles-source == "posts" %}
2016-08-26 04:18:46 +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 04:08:23 +02:00
{% endif %}
2016-08-26 01:15:01 +02:00
</section>