41 lines
1.5 KiB
PHP
41 lines
1.5 KiB
PHP
@extends('web.themes.shella.layouts.app')
|
|
|
|
@section('content')
|
|
<main id="MainContent">
|
|
<div class="breadcrumbs mt-15">
|
|
<div class="container">
|
|
<ul class="list-unstyled d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
|
|
<li><a href="/">{{ __('Home') }}</a></li>
|
|
<li><span>{{ __('FAQ') }}</span></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="container mb-60">
|
|
<h1 class="h3 mt-30 text-center">{{ __('Frequently asked questions') }}</h1>
|
|
<div class="rte">
|
|
<div class="container container--sm px-0">
|
|
{{-- <p class="mb-50 text-center">This is an approximate conversion table to help you find your size. If you
|
|
have already purchased an item by our brand, we recommend you select the same size as indicated on
|
|
its label.</p> --}}
|
|
</div>
|
|
</div>
|
|
<div id="theme-section-faqs" class="theme-section">
|
|
@switch(app()->getLocale())
|
|
@case('ru')
|
|
@include('web.themes.shella.pages.legals.langs.faq-ru')
|
|
@break
|
|
|
|
@case('en')
|
|
@include('web.themes.shella.pages.legals.langs.faq-en')
|
|
@break
|
|
|
|
@default
|
|
@include('web.themes.shella.pages.legals.langs.faq-tk')
|
|
@endswitch
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</main>
|
|
@stop
|