1
2019-06-28 21:47:37 -04:00

35 lines
922 B
HTML

<section id="one" class="tiles">
{% for post in site.posts limit:site.tiles-count %}
{% if site.tiles-source == 'posts' %}
<article class="tile">
<span class="image">
<img src="{{ post.image }}" alt="" />
</span>
<header class="major">
<h3><a href="{{ post.url | relative_url }}" class="link">{{ post.title }}</a></h3>
<p>{{ post.description }}</p>
</header>
</article>
{% endif %}
{% endfor %}
</section>
<article>
<section id="two">
<div class="inner">
<!-- <header class="major">
<h2>Massa libero</h2>
</header>
<p>{{ content }}</p> -->
<!-- <ul class="actions">
<li><a href="all_posts.html" class="button next">View All</a></li>
</ul> -->
<br>
<a href="all_posts.html" class="button next" style="left:10%; margin:auto">View All</a>
<br><br>
</div>
</section>
</article>