It is possible to create such functionality via the blog_recent_posts HubL function. This returns a sequence of blog post objects for the specified blog, sorted by most recent first - see this resource on HubL functions here for reference. You would add the below snippet to your template, configured to your needs with the help of a developer:
{{ blog_recent_posts('default', 5) }}
{% set rec_posts = blog_recent_posts('default', 5) %}
{% for rec_post in rec_posts %}
<div class="post-title">{{ rec_post.name }}</div>
{% endfor %}
Please note this function has a limit of 200 posts.
It is possible to create such functionality via the blog_recent_posts HubL function. This returns a sequence of blog post objects for the specified blog, sorted by most recent first - see this resource on HubL functions here for reference. You would add the below snippet to your template, configured to your needs with the help of a developer:
{{ blog_recent_posts('default', 5) }}
{% set rec_posts = blog_recent_posts('default', 5) %}
{% for rec_post in rec_posts %}
<div class="post-title">{{ rec_post.name }}</div>
{% endfor %}
Please note this function has a limit of 200 posts.