Created
May 25, 2020 19:10
-
-
Save fritzlaszlo/d6a22af3190cfb2cdfdec2ea3c56700c to your computer and use it in GitHub Desktop.
kirby row column chunk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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