The point is to create a simple CMS with Padrino in which front-end content is object driven, i.e. aside from domain models of the app, there is a "Page" model and a "Content"/"Snippet" and maybe "Category" model.
Looking at https://github.com/padrino/padrino-web I get how it can be done, although in my current use case it would make more sense to leave code completely out of the admin text fields. The people who'll update content aren't savvy of html, haml, markup, etc, and so it would be good to have different layouts for different instances of a "Page" model, which in turn would have plain text snippets which are hardcoded just in place in the different templates, while being editable in admin.
Does this make sense, and is it possible?