layout: default
<div class=“category-index”>
<h1 class="page-heading">{{ page.title | capitalize | replace: "Ij", "IJ" }}</h1> <ul class="post-list"> {% for post in page.posts %} <li {% if post.lead_image %}style="background-image: linear-gradient(90deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0.7) 80%), url('{{ post.lead_image }}'); background-size: contain;"{% endif %}> {% include post_meta.html post=post %} <h2> <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> </h2> <div> {{ post.excerpt }} </div> <a href="{{ post.url | prepend: site.baseurl }}">lees verder</a> </li> {% endfor %} </ul>
</div>