Hi
Still a rookie in views
I want to make a list of post on the front page with views
I take this and ok for the post title but how for the content
{{ post.content }} alone doesn't work. Thanks to put me on good tracks
{% set args = { post_type: 'post', posts_per_page: -1 } %}
{% set posts = mb.get_posts( args ) %}
{% for post in posts %}
<h3>Post title: {{ post.post_title }}</h3>
<p>{{ post.content }} </p>
{% endfor %}<br />