Better footer design

This commit is contained in:
James Brooks
2014-12-18 22:37:59 +00:00
parent e683e1919c
commit 453a3d0a49
7 changed files with 35 additions and 8 deletions

View File

@@ -31,6 +31,7 @@ h1 {
.container {
max-width: 960px;
margin-bottom: 40px;
}
.page-header {
@@ -150,3 +151,12 @@ h1 {
}
}
}
footer.footer {
padding-top: 40px;
padding-bottom: 40px;
color: #777;
text-align: center;
border-top: 1px solid #e5e5e5;
background-color: lighten(#e5e5e5, 5%);
}

View File

@@ -21,6 +21,4 @@
@for($i=0; $i <= 7; $i++)
@include('partials.incident', array('i', $i))
@endfor
@include('partials.support-link')
@stop

View File

@@ -18,5 +18,7 @@
<div class='container'>
@yield('content')
</div>
@include('partials.support-link')
</body>
</html>

View File

@@ -1,6 +1,5 @@
@if(Setting::get('show_support'))
<hr />
<div class='footer'>
<footer class='footer'>
<p>{{ Lang::get('cachet.powered_by', array('app' => Setting::get('app_name'))) }}</p>
</div>
</footer>
@endif