Hey there,
I’m super new to Kirby and just trying to learn a lot. I setup my website and made a Blog with the instructions. but I want my Blog to display all the content without clicking on the “Read More” Field.
This is the foreach loop out of the cookbook:
<?php foreach($page->children()->listed()->flip() as $article): ?>
<article>
<h1><?= $article->title()->html() ?></h1>
<p><?= $article->text()->excerpt(300) ?></p>
<a href="<?= $article->url() ?>">Read more…</a>
</article>
<?php endforeach ?>
So far everything is working as it should, but I can’t figure out how to let my Blog display the full contents of all the posts (Text, video, image) in reversed order with dividers and date in between them.
Sorry for bothering you, I know it’s a total beginner question but I’m not (yet ) into web developing.