Hi everyone,
can someone please help me. its a little thing what i can’t find.
i can not link to the full article whit <a href="<?php $article->url() ?>">Read more…</a>
only if i remove my section div i can click on it
<section class="contents blogs col-md-9">
<h1><?php echo $page->title()->html() ?></h1>
<?php echo $page->text()->kirbytext() ?>
<?php foreach($page->children()->visible()->flip() as $article): ?>
<article>
<h1><?php echo $article->title()->html() ?></h1>
<p><?php echo $article->text()->excerpt(300) ?></p>
<a href="<?php $article->url() ?>">Read more…</a>
</article>
<hr>
<?php endforeach ?>
</section>
thx