1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-04 12:17:42 +02:00

Default Theme: updates.

This commit is contained in:
Awilum
2012-12-15 20:26:06 +02:00
parent a6baf5aaaa
commit cbdeb0f7d3
2 changed files with 46 additions and 6 deletions

View File

@@ -0,0 +1,34 @@
<?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'); ?>

View File

@@ -1,16 +1,22 @@
<?php Chunk::get('header'); ?>
<div class="container">
<div>
<?php Action::run('theme_pre_content'); ?>
<div class="row">
<div class="span12">
<?php Action::run('theme_pre_content'); ?>
</div>
</div>
<div>
<?php echo Site::content(); ?>
<div class="row">
<div class="span12">
<?php echo Site::content(); ?>
</div>
</div>
<div>
<?php Action::run('theme_post_content'); ?>
<div class="row">
<div class="span12">
<?php Action::run('theme_post_content'); ?>
</div>
</div>
<hr>