Initial commit

This commit is contained in:
KirbyCMS Deploy
2026-04-15 11:50:31 +00:00
commit 0a8c107828
1114 changed files with 203788 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
/**
* Collections help with keeping your code DRY
* if you need to reuse the same set up pages, files or users in multiple places across your site.
*
* More about collections:
* https://getkirby.com/docs/guide/templates/collections
*/
return function () {
return page('notes')
->children()
->listed()
->sortBy('date', 'desc');
};