Added futter. Fixes #1822

This commit is contained in:
Nikola Trifunovic 2014-01-11 16:41:39 +01:00
parent bffdcdd416
commit ca6da5de54
2 changed files with 48 additions and 33 deletions

View File

@ -21,7 +21,9 @@ AppAsset::register($this);
<?php $this->head() ?>
</head>
<body>
<?php $this->beginBody() ?>
<div class="wrap">
<?php
NavBar::begin([
'brandLabel' => 'My Company',
@ -52,6 +54,7 @@ AppAsset::register($this);
]) ?>
<?= $content ?>
</div>
</div>
<footer class="footer">
<div class="container">

View File

@ -1,12 +1,24 @@
html,
body {
padding-top: 70px;
height: 100%;
}
.wrap {
min-height: 100%;
height: auto;
margin: 0 auto -60px;
padding: 0 0 60px;
}
.wrap > .container {
padding: 70px 15px 20px;
}
.footer {
height: 60px;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
margin-top: 30px;
padding-top: 15px;
padding-bottom: 30px;
padding-top: 20px;
}
.jumbotron {