hi there
i could not find the information online but is there a way, if you build your own theme, to add sections in the backend to have a “completely” new page template then in the frontend?
sometimes you want to have 3 rows sometimes only 2?!
currently i code this in the theme files like:
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12">
<?php $a = new Area('Content 2 links');
$a->display($c); ?>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<?php $a = new Area('Content 2 rechts');
$a->display($c); ?>
</div>
</div>
</div>