That's why I like me Kirby setup
That's why I like my Kirby setup so much: I wanted to add the recent five episodes of our podcast and the recent five posts of our Sociabli blog to my homepage. And all I had to do was add this to the controller:
$serverSideStories = $site->rssPages('https://konzentrik.de/server-side-stories/feed')->sortBy('date', 'desc')->limit(5);
$sociabli = $site->rssPages('https://sociab.li/blog/feed.xml')->sortBy('date', 'desc')->limit(5);
And then on the front page, use my text-list snippet:
<?php snippet('list/textlist', ['articleList' => $sociabli, 'useLink' => true]); ?>
That's it!
Write a comment