forked from a1gard/xshop
Merge pull request #6 from 4xmen/master
commit
0e56e3915a
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,94 @@
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<h3>
|
||||
{{\App\Helpers\getSettingCategory('footer1')->name}}
|
||||
</h3>
|
||||
<ul>
|
||||
@foreach(\App\Helpers\getSettingCategory('footer1')->posts as $p)
|
||||
<li>
|
||||
<a href="{{route('n.show',$p->slug)}}">
|
||||
{{$p->title}}
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<h3>
|
||||
{{\App\Helpers\getSettingCategory('footer2')->name}}
|
||||
</h3>
|
||||
<ul>
|
||||
@foreach(\App\Helpers\getSettingCategory('footer2')->posts as $p)
|
||||
<li>
|
||||
<a href="{{route('n.show',$p->slug)}}">
|
||||
{{$p->title}}
|
||||
</a>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<h3>
|
||||
اطلاعات تماس
|
||||
</h3>
|
||||
<p class="text-secondary">
|
||||
افراد گروه سوم از اهمیت به پایان رساندن آگاه هستند. آنها با تفکر منطقی، طرحی روشن ارائه میکنند. آنها نه تنها برای پایان دادن به پروژهی خود در آینده برنامه ریزی میکنند، بلکه به تمام نتایج و عواقب اجرای آن برنامه هم میاندیشند. این افراد کسانی هستند که هنر به پایان رساندن را میدانند.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<h3>
|
||||
نمادها
|
||||
</h3>
|
||||
<div class="text-center namad">
|
||||
{!! \App\Helpers\getSetting('footer3') !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12 pb-4">
|
||||
<hr>
|
||||
<div class="p4 text-center social">
|
||||
@if(trim(\App\Helpers\getSetting('soc_in')) != '')
|
||||
<a target="_blank" href="{{\App\Helpers\getSetting('soc_in')}}">
|
||||
<i class="fab fa-instagram"></i>
|
||||
</a>
|
||||
@endif
|
||||
@if(trim(\App\Helpers\getSetting('soc_tg')) != '')
|
||||
<a target="_blank" href="{{\App\Helpers\getSetting('soc_tg')}}">
|
||||
<i class="fab fa-telegram"></i>
|
||||
</a>
|
||||
@endif
|
||||
@if(trim(\App\Helpers\getSetting('soc_wp')) != '')
|
||||
<a target="_blank"
|
||||
href="https://api.whatsapp.com/send/?phone={{urlencode(\App\Helpers\getSetting('soc_wp'))}}&text=%D8%A8%D8%A7%20%D8%B3%D9%84%D8%A7%D9%85%0A%D8%A7%D8%B2%20%D8%B3%D8%A7%DB%8C%D8%AA%20%D8%A8%D8%B1%D8%A7%DB%8C%20%D8%B3%D9%81%D8%A7%D8%B1%D8%B4%20%D9%88%20%D9%BE%D8%B4%D8%AA%DB%8C%D8%A8%D8%A7%D9%86%DB%8C%20%D8%AA%D9%85%D8%A7%D8%B3%20%D9%85%DB%8C%DA%AF%DB%8C%D8%B1%D9%85&app_absent=0">
|
||||
<i class="fab fa-whatsapp"></i>
|
||||
</a>
|
||||
@endif
|
||||
@if(trim(\App\Helpers\getSetting('soc_tw')) != '')
|
||||
<a target="_blank" href="{{\App\Helpers\getSetting('soc_tw')}}">
|
||||
<i class="fab fa-twitter"></i>
|
||||
</a>
|
||||
@endif
|
||||
@if(trim(\App\Helpers\getSetting('soc_yt')) != '')
|
||||
<a target="_blank" href="{{\App\Helpers\getSetting('soc_yt')}}">
|
||||
<i class="fab fa-youtube"></i>
|
||||
</a>
|
||||
@endif
|
||||
</div>
|
||||
<hr>
|
||||
<div class="text-center text-black-50">
|
||||
{{\App\Helpers\getSetting('copyright')}}
|
||||
© {{date('Y')}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<input type="hidden" id="fav-toggle" value="{{route('fav.toggle','')}}">
|
||||
@yield('js-content')
|
||||
<script src="{{asset('js/theme.js')}}" defer></script>
|
||||
@include('component.lang')
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,9 @@
|
||||
@include('website.component.header')
|
||||
|
||||
<div id="main-container" class="@yield('body-class')">
|
||||
<div id="app">
|
||||
@yield('content')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('website.component.footer')
|
Loading…
Reference in New Issue