mirror of
https://github.com/adulau/art.git
synced 2024-11-22 10:07:08 +00:00
13 lines
487 B
HTML
13 lines
487 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="{{ post.url }}" class="link">{{ post.title }}</a></h3>
|
|
<p>{{ post.description }}</p>
|
|
</header>
|
|
</article>
|
|
{% endfor %}
|
|
</section>
|