@if(isset($lightweight) == false)
  • {{ __('Contact') }}
  • {{ __('Terms') }}
  • {{ __('Privacy') }}
  • {{ __('Developers') }}
  • @foreach ($footerPages as $page)
  • {{ __($page['name']) }}
  • @endforeach
@foreach (['social_facebook' => __('Facebook'), 'social_twitter' => 'Twitter', 'social_instagram' => 'Instagram', 'social_youtube' => 'YouTube'] as $url => $title) @if(config('settings.'.$url)) @include('icons.share.'.strtolower($title), ['class' => 'fill-current width-5 height-5']) @endif @endforeach

@endif
{{ __('© :year :name.', ['year' => now()->year, 'name' => config('settings.title')]) }} {{ __('All rights reserved.') }}
@include('icons.contrast', ['class' => 'width-4 height-4 fill-current ' . (__('lang_dir') == 'rtl' ? 'ml-2' : 'mr-2')]) {{ (config('settings.dark_mode') == 1 ? __('Dark') : __('Light')) }}
@if(count(config('app.locales')) > 1)
@include('icons.language', ['class' => 'width-4 height-4 fill-current ' . (__('lang_dir') == 'rtl' ? 'ml-2' : 'mr-2')]) {{ config('app.locales')[config('app.locale')]['name'] }}
{{ __('Change language') }}
@csrf
@foreach(config('app.locales') as $code => $language)
@endforeach
@endif
@include('shared.cookie-law')