Hi, I'm trying to get my blogPosts list on the homepage of my OctoberCMS site (the root of the website, i.e. /). The URL of my blog page is : /blog/:page?. When I go to the root /. How can I get the blogPosts list on my homepage (i.e. root /) please?
You can add Blog posts component to your page (or layout, or partial) and inside this page, you can access blogPosts object.
_How to add component is here, 5:41_
In page, you can render posts like this:
{% for post in blogPosts.posts %}
<h5>{{post.title}}</h5>
<p>{{post.content_html|raw}}</p>
{% endfor %}
Most helpful comment
You can add Blog posts component to your page (or layout, or partial) and inside this page, you can access blogPosts object.
_How to add component is here, 5:41_
In page, you can render posts like this:
{% for post in blogPosts.posts %}<h5>{{post.title}}</h5><p>{{post.content_html|raw}}</p>{% endfor %}