Move the subscribers button into footer, re-arrange top half page

This commit is contained in:
James Brooks
2015-10-17 14:18:45 +01:00
parent 49e4113159
commit 4e7d4c4581
9 changed files with 52 additions and 55 deletions
-1
View File
@@ -71,7 +71,6 @@ body.status-page {
}
.about-app {
margin-top: 40px;
margin-bottom: 40px;
p {
font-size: 1.2em;
+2 -5
View File
@@ -1,11 +1,8 @@
@extends('layout.master')
@section('content')
<div class="pull-right">
@if($subscribers_enabled)
<p><a class="btn btn-success btn-outline links" href="{{ route('subscribe.subscribe') }}">{{ trans('cachet.subscriber.button') }}</a></p>
@endif
<p><a class="btn btn-success btn-outline links" href="/"><i class="ion-home"></i></a></p>
<div class="btn-group pull-right">
<a href="/" class="btn btn-info"><i class="ion-home"></i></a>
</div>
<div class="clearfix"></div>
+4 -12
View File
@@ -1,14 +1,6 @@
@extends('layout.master')
@section('content')
@if($subscribers_enabled)
<div class="pull-right">
<p><a class="btn btn-success btn-outline" href="{{ route('subscribe.subscribe') }}">{{ trans('cachet.subscriber.button') }}</a></p>
</div>
@endif
<div class="clearfix"></div>
<div class="section-messages">
@include('dashboard.partials.errors')
</div>
@@ -26,10 +18,6 @@
</div>
@endif
<div class="section-status">
<div class="alert alert-{{ $systemStatus }}">{{ $systemMessage }}</div>
</div>
@if($about_app)
<div class="about-app">
<h1>{{ trans('cachet.about_this_site') }}</h1>
@@ -37,6 +25,10 @@
</div>
@endif
<div class="section-status">
<div class="alert alert-{{ $systemStatus }}">{{ $systemMessage }}</div>
</div>
@if(!$component_groups->isEmpty() || !$ungrouped_components->isEmpty())
<div class="section-components">
@include('partials.components')
@@ -16,6 +16,9 @@
@endif
<a href="{{ route('feed.rss') }}" class="icon-link rss"><i class="ion-social-rss"></i> {{ trans('cachet.rss-feed') }}</a>
<a href="{{ route('feed.atom') }}" class="icon-link rss"><i class="ion-social-rss"></i> {{ trans('cachet.atom-feed') }}</a>
@if($subscribers_enabled)
<a class="icon-link" href="{{ route('subscribe.subscribe') }}">{{ trans('cachet.subscriber.button') }}</a>
@endif
</div>
</div>
</div>