Hello,
I just started my Kirby journey today. Surprisely I could learn and accomplish a lot thanks to the good documentation. But I am struggling with one little thing, I am not being able to render in the frontend the content of some block’s fieldsets. I can see the fields in the backend and output the content to the .txt
The settings I am creating for the home of a test site, that’s where I could go so far. I am using Kirby 3.9
home.yml
title: Home
fields:
text:
type: blocks
fieldsets:
- heading
- text
home.php
<?php snippet('header') ?>
<main id="main">
<section class="section">
<h1><?= $page->title() ?></h1>
</section>
<section>
<h2>"expected block heading"</h2>
<p>"expected block paragraph"</p>
</section>
</main>
<?php snippet('footer') ?>
<?php snippet('scripts') ?>
</body>
</html>
I missing knowledge to go over this. I tried some foreach loops, but until now I just broke my site
Thanks a lot