I begin to work on D8 few days ago. I want to build a website as you can do it with Wordpress + ACF using D8 and its Content type.
Steps are similar : creating a specific page > add custom fields > display them how we want in the page.
I managed to display some content by reaching the value in the big D8 datas :
// example for a h1 tag
<h1>{{ node.field_accueil_slide_titre.value }}</h1>
Using node or content main Object/array. By the way it's already difficult and quite stupid to have to delve the node/content array to guess the ".value", ".uri" or ".title" that are needed when we want specific things. Is that the good way to do ? I can't find a doc or listing about it.
My point is that I now want to make something as a "foreach loop" on the field that contains images but I can't find a way to reach images in a clean array. And if I try to display the field to delve my chrome tab crash..
{% for images in content.field_accueil_image_slide %}
This do not works for example.
Do I have to generate a new block just for the carousel generation ?