Skip to content

Instantly share code, notes, and snippets.

@fritzlaszlo
Created May 25, 2020 19:10
Show Gist options
  • Save fritzlaszlo/d6a22af3190cfb2cdfdec2ea3c56700c to your computer and use it in GitHub Desktop.
Save fritzlaszlo/d6a22af3190cfb2cdfdec2ea3c56700c to your computer and use it in GitHub Desktop.
kirby row column chunk
<?php foreach ($query->chunk(3) as $chunks): ?>
<div class="row">
<?php foreach($chunks as $posts): ?>
<div class="col-4">
<?= $posts->text()->kirbytextinline() ?>
</div>
<?php endforeach ?>
</div>
<?php endforeach ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment