I am basically using the $articles from the Standard Template
<?php foreach($articles as $article): ?>
<div class="row">
<div class="col-lg-6 col-md-6">
<div class="blogpost">
<div class="posttitle">
<h1>
<a href="<?= $article->url() ?>"><?= $page->title()->html() ?></a>
<?= $article->url() ?>
</h1>
</div>
<div class="postcontent">
<!-- <a href="wallpapers.html"><img class="img-responsive postimage" src="4.jpg"></a> -->
<?= $article->text()->kirbytext() ?>
<!-- <?= $article->text()->kirbytext()->excerpt(500, 'words') ?>
<a href="<?= $article->url() ?>" class="article-more">read more</a> -->
</div>
</div>
</div>
</div>
<?php endforeach ?>
But how can I access now the images that are in these articles? I donβt get it. These $articles looks like magic to me.