Changed the about dialog slightly

This commit is contained in:
Bernd Bestel
2019-03-06 19:23:53 +01:00
parent ff15e81abe
commit 9f36a599a4
2 changed files with 22 additions and 15 deletions

View File

@@ -7,20 +7,28 @@
<div class="col-xs-12 col-md-6 col-xl-4 text-center">
<h1>@yield('title')</h1>
grocy is a project by
<a href="https://berrnd.de" class="discrete-link" target="_blank">Bernd Bestel</a><br>
Created with passion since 2017<br>
<br>
Version {{ $version }}<br>
{{ $L('Released on') }} {{ $releaseDate }} <time class="timeago timeago-contextual" datetime="{{ $releaseDate }}"></time><br>
<br>
PHP Version {{ $system_info['php_version'] }}<br>
SQLite Version {{ $system_info['sqlite_version'] }}<br>
<br>
Life runs on code<br>
<a href="https://github.com/grocy/grocy" class="discrete-link" target="_blank">
<i class="fab fa-github"></i>
</a>
<p class="font-italic">
grocy is a project by
<a href="https://berrnd.de" class="discrete-link" target="_blank">Bernd Bestel</a><br>
Created with passion since 2017
</p>
<p>
Version <code>{{ $version }}</code><br>
{{ $L('Released on') }} <code>{{ $releaseDate }}</code> <time class="timeago timeago-contextual" datetime="{{ $releaseDate }}"></time>
</p>
<p>
PHP Version <code>{{ $system_info['php_version'] }}</code><br>
SQLite Version <code>{{ $system_info['sqlite_version'] }}</code>
</p>
<p class="small text-muted">
Life runs on code<br>
<a href="https://github.com/grocy/grocy" class="discrete-link" target="_blank">
<i class="fab fa-github"></i>
</a>
</p>
</div>
</div>
@stop