<h2 class=“mt-5”>Selected posts</h2> <hr> <ul class=“posts-feed unstyle-list”> {% for post in site.data.posts | limit:5 %}

<li class="post-node">
  <a href="{{ post.url }}" class="post-link row align-items-center">
    <span class="post-title col-auto pr-0">{{ post.title }}</span>
    <span class="post-date col-auto">{{ post.date }}</span>
  </a>
</li>

{% endfor %} </ul> <a href=“//github.com/miltonolaf” class=“next-post”>All posts →</a>