mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 13:38:20 +01:00
ba0fdf1368
In the settings it's possible to fill a field "About this page". If we refer to the demo the content of this field is supposed to be shown under the status on the status page. The problem was the information was not shown even if it was not empty. So if we typed "We are a company ...", this was not shown, nowhere. Technically the problem was because the partial "about-app" was not included so the information was never shown. To fix that I have included the partial "about-app" in the index. Now if the field empty nothing is shown (the same as before) but if the field is not empty so the information is shown under the status bar. See: #3249
17 lines
412 B
PHP
17 lines
412 B
PHP
@extends('layout.master')
|
|
|
|
@section('content')
|
|
@include('partials.modules.messages')
|
|
@include('partials.modules.status')
|
|
@include('partials.about-app')
|
|
@include('partials.modules.components')
|
|
@include('partials.modules.metrics')
|
|
@include('partials.modules.stickied')
|
|
@include('partials.modules.scheduled')
|
|
@include('partials.modules.timeline')
|
|
@stop
|
|
|
|
@section('bottom-content')
|
|
@include('partials.footer')
|
|
@stop
|