It looks like Kirby is built to always expect a title for a page/article.
How should I build my blueprints if I want to make microblogs - aka Twitter like short posts with no title attached?
It looks like Kirby is built to always expect a title for a page/article.
How should I build my blueprints if I want to make microblogs - aka Twitter like short posts with no title attached?
You could skip the title if you use the Custom Add Fields | Kirby CMS plugin.
Other options would be the structure field or a blocks field.
This is only relevant if you create post through the Panel; I guess your use case is more about importing posts, so this is not relevant, and you can set anything as title when creating posts programmatically, even drop the title, in which case the page slug will be used as title.
I’m in the same situation. I’m currently migrating my site to Kirby. Previously, I used Eleventy and IndieKit to post notes. These are contents without titles, syndicated on social networks like Mastodon. Could it be possible to automatically generate a title based on the date when creating a new note?
Yes, that is possible via the create option in a page blueprint Page blueprint | Kirby CMS