Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
fix for forgotten Bootstrap 3 styling
Browse files Browse the repository at this point in the history
  • Loading branch information
hans2103 committed Jan 30, 2015
1 parent b8403dc commit 89ac166
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
14 changes: 10 additions & 4 deletions pagelayout/1column.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
defined('_JEXEC') or die;
?>

<?php if(count(JFactory::getApplication()->getMessageQueue())):?>
<jdoc:include type="message" />
<?php endif; ?>
<jdoc:include type="component" />
<div class="container">
<div class="row">
<div class="col-xs-12">
<?php if(count(JFactory::getApplication()->getMessageQueue())):?>
<jdoc:include type="message" />
<?php endif; ?>
<jdoc:include type="component" />
</div>
</div>
</div>
14 changes: 10 additions & 4 deletions pagelayout/homepage.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
defined('_JEXEC') or die;
?>

<?php if(count(JFactory::getApplication()->getMessageQueue())):?>
<jdoc:include type="message" />
<?php endif; ?>
<jdoc:include type="component" />
<div class="container">
<div class="row">
<div class="col-xs-12">
<?php if(count(JFactory::getApplication()->getMessageQueue())):?>
<jdoc:include type="message" />
<?php endif; ?>
<jdoc:include type="component" />
</div>
</div>
</div>

0 comments on commit 89ac166

Please sign in to comment.