UNPKG

663 BHTMLView Raw
1{# This is an example of a block template. In a production site you will #}
2{# want to provide your own block templates in lib/modules/apostrophe-blocks/templates #}
3
4{# This inline style tag is just for the example, you should declare your #}
5{# styles in a less file #}
6<style type="text/css">
7 .left-column, .right-column {
8 float: left;
9 width: 48%;
10 margin: 0 1% 0 1%;
11 }
12</style>
13
14<div class="left-column">
15 {{ aposArea(page, prefix + 'left') }}
16</div>
17<div class="right-column">
18 {{ aposArea(page, prefix + 'right') }}
19</div>
20{# I'm just a backend programmer. I bet you can avoid this clumsy way of clearing #}
21<div style="clear: left"></div>