22 lines
705 B
Smarty
22 lines
705 B
Smarty
|
|
{**
|
||
|
|
* For the full copyright and license information, please view the LICENSE
|
||
|
|
* file that was distributed with this source code.
|
||
|
|
*}
|
||
|
|
{extends file='layouts/layout-both-columns.tpl'}
|
||
|
|
|
||
|
|
{block name='content_columns'}
|
||
|
|
<div class="{block name='container_class'}columns-container container{/block}">
|
||
|
|
{block name='left_column'}{/block}
|
||
|
|
{block name='content_wrapper'}
|
||
|
|
<div id="center-column" class="center-column page page--full-width">
|
||
|
|
{hook h='displayContentWrapperTop'}
|
||
|
|
{block name='content'}
|
||
|
|
<p>Hello world! This is HTML5 Boilerplate.</p>
|
||
|
|
{/block}
|
||
|
|
{hook h='displayContentWrapperBottom'}
|
||
|
|
</div>
|
||
|
|
{/block}
|
||
|
|
{block name='right_column'}{/block}
|
||
|
|
</div>
|
||
|
|
{/block}
|