1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-05 04:37:51 +02:00
Files
php-monstra/public/themes/default/home.template.php
2013-01-04 21:08:04 +02:00

34 lines
863 B
PHP

<?php Chunk::get('header'); ?>
<div class="container">
<div class="row">
<div class="span12">
<?php Action::run('theme_pre_content'); ?>
</div>
</div>
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<?php echo Block::get('hero-unit'); ?>
</div>
<!-- Example row of columns -->
<div class="row">
<?php echo Block::get('marketing'); ?>
</div>
<div class="row">
<div class="span12">
<?php echo Site::content(); ?>
</div>
</div>
<div class="row">
<div class="span12">
<?php Action::run('theme_post_content'); ?>
</div>
</div>
<hr>
<?php Chunk::get('footer');