devol.it/_includes/tiles.html

29 lines
1.0 KiB
HTML
Raw Normal View History

2016-08-26 01:15:01 +02:00
<section id="one" class="tiles">
2016-08-26 04:18:46 +02:00
{% for post in site.posts limit:site.tiles-count %}
2016-08-26 04:33:38 +02:00
{% if site.tiles-source == 'posts' %}
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">
<h3><a href="{{ post.url | relative_url }}" class="link">{{ post.title }}</a></h3>
2016-08-26 03:51:44 +02:00
<p>{{ post.description }}</p>
2016-08-26 03:49:43 +02:00
</header>
</article>
2016-08-26 04:08:23 +02:00
{% endif %}
2016-08-26 04:33:38 +02:00
{% endfor %}
2016-08-26 04:28:10 +02:00
{% for page in site.pages limit:site.tiles-count %}
2016-08-26 04:33:38 +02:00
{% if site.tiles-source == 'pages' %}
2016-08-26 04:28:10 +02:00
<article>
<span class="image">
<img src="{{ page.image }}" alt="" />
</span>
<header class="major">
<h3><a href="{{ page.url | relative_url }}" class="link">{{ page.title }}</a></h3>
2016-08-26 04:28:10 +02:00
<p>{{ page.description }}</p>
</header>
</article>
{% endif %}
2016-08-26 04:33:38 +02:00
{% endfor %}
2016-08-26 01:15:01 +02:00
</section>