Skip to content

Commit

Permalink
swaps version and open source text in the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Godmartinz committed Apr 25, 2023
1 parent 0ab400f commit c9eb141
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions resources/views/layouts/default.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,14 @@ class="fas fa-check text-blue fa-fw"></i>

</div><!-- /.content-wrapper -->
<footer class="main-footer hidden-print" style="display:grid;flex-direction:column;">

<div class="1hidden-xs pull-left">
<div class="pull-left" >
<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software,
made with <i class="fas fa-heart" style="color: #a94442; font-size: 10px" aria-hidden="true"></i><span
class="sr-only">love</span> by <a href="https://twitter.com/snipeitapp" rel="noopener">@snipeitapp</a>.
</div>
<div class="pull-right">
@if ($snipeSettings->version_footer!='off')
@if (($snipeSettings->version_footer=='on') || (($snipeSettings->version_footer=='admin') && (Auth::user()->isSuperUser()=='1')))
&nbsp; <strong>Version</strong> {{ config('version.app_version') }} -
Expand All @@ -874,14 +881,10 @@ class="fas fa-check text-blue fa-fw"></i>
href="{{ $snipeSettings->privacy_policy_link }}"
target="_new">{{ trans('admin/settings/general.privacy_policy') }}</a>
@endif
<div class="pull-right" >
<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software,
made with <i class="fas fa-heart" style="color: #a94442; font-size: 10px" aria-hidden="true"></i><span
class="sr-only">love</span> by <a href="https://twitter.com/snipeitapp" rel="noopener">@snipeitapp</a>.
</div>
<br>
@if ($snipeSettings->footer_text!='')
<div class="pull-left" style="margin-left:7px;">
<div class="pull-left">
{!! Helper::parseEscapedMarkedown($snipeSettings->footer_text) !!}
</div>
@endif
Expand Down

0 comments on commit c9eb141

Please sign in to comment.