layout | title | permalink |
---|---|---|
page |
Blog |
/post/ |
{% for post in site.posts %}
{% if post.categories contains 'blog' %}
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Leggi tutto</a>
</article>
{% endif %}
{% endfor %}