You can now provide an "about this site" descriptive text
This commit is contained in:
@@ -49,6 +49,14 @@ body.status-page {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.about-app {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;
|
||||
p {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
}
|
||||
|
||||
.alert {
|
||||
border-radius: 0;
|
||||
font-size: 1.2em;
|
||||
|
||||
@@ -26,13 +26,15 @@ return [
|
||||
'bad' => 'Some systems are experiencing issues.',
|
||||
],
|
||||
// Other
|
||||
'powered_by' => ':app Status Page is powered by <a href="https://cachethq.github.io">Cachet</a>.',
|
||||
'login_message' => 'Welcome Back!',
|
||||
'login' => 'Login',
|
||||
'logout' => 'Logout',
|
||||
'logged_in' => 'You\'re logged in.',
|
||||
'setup' => 'Setup Cachet',
|
||||
'no_incidents' => 'No incidents reported.',
|
||||
'powered_by' => ':app Status Page is powered by <a href="https://cachethq.github.io">Cachet</a>.',
|
||||
'about_this_site' => 'About this site',
|
||||
'login_message' => 'Welcome Back!',
|
||||
'login' => 'Login',
|
||||
'logout' => 'Logout',
|
||||
'logged_in' => 'You\'re logged in.',
|
||||
'setup' => 'Setup Cachet',
|
||||
'no_incidents' => 'No incidents reported.',
|
||||
'past_incidents' => 'Past incidents',
|
||||
// Dashboard
|
||||
'dashboard' => [
|
||||
'dashboard' => 'Dashboard',
|
||||
|
||||
@@ -39,6 +39,14 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='col-xs-12'>
|
||||
<div class='form-group'>
|
||||
<label>About this page</label>
|
||||
<textarea name='app_about' class='form-control' rows='4'>{{ Setting::get("app_about") }}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row'>
|
||||
<div class='col-xs-12'>
|
||||
<div class='form-group'>
|
||||
|
||||
@@ -12,12 +12,20 @@
|
||||
|
||||
<div class='alert alert-{{ $systemStatus }}'>{{ $systemMessage }}</div>
|
||||
|
||||
@if($aboutApp = Setting::get('app_about'))
|
||||
<div class='about-app'>
|
||||
<h1>{{ Lang::get('cachet.about_this_site') }}</h1>
|
||||
<p>{{ $aboutApp }}</p>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@include('partials.components')
|
||||
|
||||
{{-- @if(Setting::get('display_graphs'))
|
||||
@include('partials.graphs')
|
||||
@endif --}}
|
||||
|
||||
<h1>{{ Lang::get('cachet.past_incidents') }}</h1>
|
||||
@foreach(range(0, 7) as $i => $v)
|
||||
@include('partials.incident', array('i', $i))
|
||||
@endforeach
|
||||
|
||||
@@ -4815,6 +4815,11 @@ body.status-page {
|
||||
margin-top: 20px; }
|
||||
body.status-page .page-header {
|
||||
margin-top: 10px; }
|
||||
body.status-page .about-app {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px; }
|
||||
body.status-page .about-app p {
|
||||
font-size: 1.2em; }
|
||||
body.status-page .alert {
|
||||
border-radius: 0;
|
||||
font-size: 1.2em; }
|
||||
@@ -4815,6 +4815,11 @@ body.status-page {
|
||||
margin-top: 20px; }
|
||||
body.status-page .page-header {
|
||||
margin-top: 10px; }
|
||||
body.status-page .about-app {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px; }
|
||||
body.status-page .about-app p {
|
||||
font-size: 1.2em; }
|
||||
body.status-page .alert {
|
||||
border-radius: 0;
|
||||
font-size: 1.2em; }
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"css/all.css": "css/all-16923627.css",
|
||||
"css/all.css": "css/all-e92d01c2.css",
|
||||
"js/all.js": "js/all-4554a981.js"
|
||||
}
|
||||
Reference in New Issue
Block a user