Hello.
I don't know how many of you are familiar with a framework / CMS called Processwire? http://processwire.com/
I've used it for small projects for a while and I love the API. You can basically output the markup however you wish, which allows you to easily use Foundation, UIKit, Bootstrap etc to handle your layout etc.
As an example:
// Pull 10 pages that use the blogs template and sorted them by when they were created
$blogs=$pages->find("template=blogs, limit=10, sort=-created");
// Output each blog title and body text. Notice how we can output this however we wish.
foreach ($blogs as $blog) {
echo "<h1>{$blog->title}<h1>";
echo $blog->body;
}
Is/will anything like this be possible with Flarum?