A friend of mine who's a comedian doesn't have a proper website, it's just a simple single HTML file, but now he needs a page that lists his gigs. His agency enters dates for him and they're used to WordPress, but I don't feel like using a CMS with a database, etc. for that. What's the best setup that allows them to login and enter dates and me to list them. @getkirby would be a good option, right?

@matuzo @getkirby

In case you want to keep it *really* simple, you could use something like `json-server` npm package, which basically transforms a json file into a rest api. Usually nothing you want to do for a production environment, of course, but here it might still be okay.

The json file can then include a list of date/description objects that can be mapped to a dom list.

Not exactly a full recommendation, but it would be extremely lightweight 😅