Move position of "About This Site". Don't double wrap text.

This commit is contained in:
James Brooks 2016-02-24 13:20:33 +00:00
parent f186907d8b
commit f92761437d
2 changed files with 4 additions and 4 deletions

View File

@ -5,12 +5,12 @@
@include('dashboard.partials.errors')
</div>
@include('partials.about-app')
<div class="section-status">
<div class="alert alert-{{ $system_status }}">{{ $system_message }}</div>
</div>
@include('partials.about-app')
@if(!$component_groups->isEmpty() || !$ungrouped_components->isEmpty())
<div class="section-components">
@include('partials.components')

View File

@ -1,7 +1,7 @@
@if($about_app)
<div class="about-app">
<h1>{{ trans('cachet.about_this_site') }}</h1>
<p>{!! $about_app !!}</p>
<h2>{{ trans('cachet.about_this_site') }}</h2>
{!! $about_app !!}
</div>
@endif