Files
website/_includes/list-posts.html
2019-07-11 11:39:09 +02:00

11 lines
363 B
HTML
Executable File

{% for post in include.posts %}
<li class="blog-post">
<h3><a href="{% include relative-src.html src=post.url %}">{{ post.title }}</a></h3>
{% include post-title.html post=post %}
<div class="post-content">
{{ post.excerpt }}
<div class="button"><a href="{% include relative-src.html src=post.url %}">Read More</a></div>
</div>
</li>
{% endfor %}