#60: Slight tweak to the layout of the About page

This commit is contained in:
Andy Heathershaw 2017-10-01 21:15:47 +01:00
parent adb86f1d4e
commit f3f5e5b615
2 changed files with 9 additions and 3 deletions

View File

@ -8,7 +8,8 @@ return [
'current_version' => 'You are running version',
'date_published_label' => 'Release date:',
'github_link' => 'Github Project Website',
'intro' => 'Blue Twilight is an <a href="https://www.andyheathershaw.uk/software/" target="_blank">App by Andy</a>. It is made with <i class="fa fa-heart text-red"></i> by UK software developer <a href="https://www.andyheathershaw.uk" target="_blank">Andy Heathershaw</a>.',
'intro' => 'Blue Twilight is an <a href="https://www.andyheathershaw.uk/software/" target="_blank">App by Andy</a>.',
'intro_2' => 'It is made with <i class="fa fa-heart text-red"></i> in the UK by software developer <a href="https://www.andyheathershaw.uk" target="_blank">Andy Heathershaw</a>.',
'latest_version_loading' => 'Checking for the latest release on Github...',
'licence_header' => 'Licence',
'links_header' => 'Useful Links',

View File

@ -12,7 +12,10 @@
<div class="row">
<div class="col">
<h1>@lang('admin.about.title')</h1>
<p>@lang('admin.about.intro')</p>
<p>
@lang('admin.about.intro')<br/>
@lang('admin.about.intro_2')
</p>
<ul class="nav nav-tabs mt-5">
<li class="nav-item">
@ -83,7 +86,9 @@
</div>
</div>
<div class="tab-pane" id="licence-tabpanel" role="tabpanel">
{!! nl2br($licence_text) !!}
<textarea class="form-control" rows="20" style="border: 0;">
{!! $licence_text !!}
</textarea>
</div>
</div>
</div>