18 lines
629 B
PHP
18 lines
629 B
PHP
<footer class="main-footer text-sm">
|
|
<strong>
|
|
© {{ date('Y') }}
|
|
@if(config('boilerplate.theme.footer.vendorlink'))
|
|
<a href="{{ config('boilerplate.theme.footer.vendorlink') }}">
|
|
{!! config('boilerplate.theme.footer.vendorname') !!}
|
|
</a>.
|
|
@else
|
|
{!! config('boilerplate.theme.footer.vendorname') !!}.
|
|
@endif
|
|
</strong>
|
|
{{ __('boilerplate::layout.rightsres') }}
|
|
<div class="float-right d-none d-sm-inline">
|
|
<a href="https://github.com/sebastienheyd/boilerplate">
|
|
Boilerplate
|
|
</a>
|
|
</div>
|
|
</footer> |