codigo actual del servidor, con avances de joan
This commit is contained in:
BIN
resources/views/frontend/policies/desktop.ini
Normal file
BIN
resources/views/frontend/policies/desktop.ini
Normal file
Binary file not shown.
61
resources/views/frontend/policies/privacypolicy.blade.php
Normal file
61
resources/views/frontend/policies/privacypolicy.blade.php
Normal file
@@ -0,0 +1,61 @@
|
||||
@extends('frontend.layouts.app')
|
||||
|
||||
@section('meta_title'){{ $page->meta_title }}@stop
|
||||
|
||||
@section('meta_description'){{ $page->meta_description }}@stop
|
||||
|
||||
@section('meta_keywords'){{ $page->tags }}@stop
|
||||
|
||||
@section('meta')
|
||||
<!-- Schema.org markup for Google+ -->
|
||||
<meta itemprop="name" content="{{ $page->meta_title }}">
|
||||
<meta itemprop="description" content="{{ $page->meta_description }}">
|
||||
<meta itemprop="image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
|
||||
<!-- Twitter Card data -->
|
||||
<meta name="twitter:card" content="website">
|
||||
<meta name="twitter:site" content="@publisher_handle">
|
||||
<meta name="twitter:title" content="{{ $page->meta_title }}">
|
||||
<meta name="twitter:description" content="{{ $page->meta_description }}">
|
||||
<meta name="twitter:creator" content="@author_handle">
|
||||
<meta name="twitter:image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
|
||||
<!-- Open Graph data -->
|
||||
<meta property="og:title" content="{{ $page->meta_title }}" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="{{ URL($page->slug) }}" />
|
||||
<meta property="og:image" content="{{ uploaded_asset($page->meta_img) }}" />
|
||||
<meta property="og:description" content="{{ $page->meta_description }}" />
|
||||
<meta property="og:site_name" content="{{ env('APP_NAME') }}" />
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="pt-4 mb-4">
|
||||
<div class="container text-center">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 text-center text-lg-left">
|
||||
<h1 class="fw-600 h4">{{ $page->getTranslation('title') }}</h1>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<ul class="breadcrumb bg-transparent p-0 justify-content-center justify-content-lg-end">
|
||||
<li class="breadcrumb-item has-transition opacity-50 hov-opacity-100">
|
||||
<a class="text-reset" href="{{ route('home') }}">{{ translate('Home')}}</a>
|
||||
</li>
|
||||
<li class="text-dark fw-600 breadcrumb-item">
|
||||
"{{ translate('Privacy Policy') }}"
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="mb-4">
|
||||
<div class="container">
|
||||
<div class="p-4 bg-white rounded shadow-sm overflow-hidden mw-100 text-left">
|
||||
@php
|
||||
echo $page->getTranslation('content');
|
||||
@endphp
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
||||
62
resources/views/frontend/policies/returnpolicy.blade.php
Normal file
62
resources/views/frontend/policies/returnpolicy.blade.php
Normal file
@@ -0,0 +1,62 @@
|
||||
@extends('frontend.layouts.app')
|
||||
|
||||
@section('meta_title'){{ $page->meta_title }}@stop
|
||||
|
||||
@section('meta_description'){{ $page->meta_description }}@stop
|
||||
|
||||
@section('meta_keywords'){{ $page->tags }}@stop
|
||||
|
||||
@section('meta')
|
||||
<!-- Schema.org markup for Google+ -->
|
||||
<meta itemprop="name" content="{{ $page->meta_title }}">
|
||||
<meta itemprop="description" content="{{ $page->meta_description }}">
|
||||
<meta itemprop="image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
|
||||
<!-- Twitter Card data -->
|
||||
<meta name="twitter:card" content="website">
|
||||
<meta name="twitter:site" content="@publisher_handle">
|
||||
<meta name="twitter:title" content="{{ $page->meta_title }}">
|
||||
<meta name="twitter:description" content="{{ $page->meta_description }}">
|
||||
<meta name="twitter:creator" content="@author_handle">
|
||||
<meta name="twitter:image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
|
||||
<!-- Open Graph data -->
|
||||
<meta property="og:title" content="{{ $page->meta_title }}" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="{{ URL($page->slug) }}" />
|
||||
<meta property="og:image" content="{{ uploaded_asset($page->meta_img) }}" />
|
||||
<meta property="og:description" content="{{ $page->meta_description }}" />
|
||||
<meta property="og:site_name" content="{{ env('APP_NAME') }}" />
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
<section class="pt-4 mb-4">
|
||||
<div class="container text-center">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 text-center text-lg-left">
|
||||
<h1 class="fw-600 h4">{{ $page->getTranslation('title') }}</h1>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<ul class="breadcrumb bg-transparent p-0 justify-content-center justify-content-lg-end">
|
||||
<li class="breadcrumb-item has-transition opacity-50 hov-opacity-100">
|
||||
<a class="text-reset" href="{{ route('home') }}">{{ translate('Home')}}</a>
|
||||
</li>
|
||||
<li class="text-dark fw-600 breadcrumb-item">
|
||||
"{{ translate('Return Policy') }}"
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="mb-4">
|
||||
<div class="container">
|
||||
<div class="p-4 bg-white rounded shadow-sm overflow-hidden mw-100 text-left">
|
||||
@php
|
||||
echo $page->getTranslation('content');
|
||||
@endphp
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
||||
62
resources/views/frontend/policies/sellerpolicy.blade.php
Normal file
62
resources/views/frontend/policies/sellerpolicy.blade.php
Normal file
@@ -0,0 +1,62 @@
|
||||
@extends('frontend.layouts.app')
|
||||
|
||||
@section('meta_title'){{ $page->meta_title }}@stop
|
||||
|
||||
@section('meta_description'){{ $page->meta_description }}@stop
|
||||
|
||||
@section('meta_keywords'){{ $page->tags }}@stop
|
||||
|
||||
@section('meta')
|
||||
<!-- Schema.org markup for Google+ -->
|
||||
<meta itemprop="name" content="{{ $page->meta_title }}">
|
||||
<meta itemprop="description" content="{{ $page->meta_description }}">
|
||||
<meta itemprop="image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
|
||||
<!-- Twitter Card data -->
|
||||
<meta name="twitter:card" content="website">
|
||||
<meta name="twitter:site" content="@publisher_handle">
|
||||
<meta name="twitter:title" content="{{ $page->meta_title }}">
|
||||
<meta name="twitter:description" content="{{ $page->meta_description }}">
|
||||
<meta name="twitter:creator" content="@author_handle">
|
||||
<meta name="twitter:image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
<meta name="twitter:label1" content="Price">
|
||||
|
||||
<!-- Open Graph data -->
|
||||
<meta property="og:title" content="{{ $page->meta_title }}" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="{{ URL($page->slug) }}" />
|
||||
<meta property="og:image" content="{{ uploaded_asset($page->meta_img) }}" />
|
||||
<meta property="og:description" content="{{ $page->meta_description }}" />
|
||||
<meta property="og:site_name" content="{{ env('APP_NAME') }}" />
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="pt-4 mb-4">
|
||||
<div class="container text-center">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 text-center text-lg-left">
|
||||
<h1 class="fw-600 h4">{{ $page->getTranslation('title') }}</h1>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<ul class="breadcrumb bg-transparent p-0 justify-content-center justify-content-lg-end">
|
||||
<li class="breadcrumb-item has-transition opacity-50 hov-opacity-100">
|
||||
<a class="text-reset" href="{{ route('home') }}">{{ translate('Home')}}</a>
|
||||
</li>
|
||||
<li class="text-dark fw-600 breadcrumb-item">
|
||||
"{{ translate('Seller Policy') }}"
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="mb-4">
|
||||
<div class="container">
|
||||
<div class="p-4 bg-white rounded shadow-sm overflow-hidden mw-100 text-left">
|
||||
@php
|
||||
echo $page->getTranslation('content');
|
||||
@endphp
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
||||
61
resources/views/frontend/policies/supportpolicy.blade.php
Normal file
61
resources/views/frontend/policies/supportpolicy.blade.php
Normal file
@@ -0,0 +1,61 @@
|
||||
@extends('frontend.layouts.app')
|
||||
|
||||
@section('meta_title'){{ $page->meta_title }}@stop
|
||||
|
||||
@section('meta_description'){{ $page->meta_description }}@stop
|
||||
|
||||
@section('meta_keywords'){{ $page->tags }}@stop
|
||||
|
||||
@section('meta')
|
||||
<!-- Schema.org markup for Google+ -->
|
||||
<meta itemprop="name" content="{{ $page->meta_title }}">
|
||||
<meta itemprop="description" content="{{ $page->meta_description }}">
|
||||
<meta itemprop="image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
|
||||
<!-- Twitter Card data -->
|
||||
<meta name="twitter:card" content="website">
|
||||
<meta name="twitter:site" content="@publisher_handle">
|
||||
<meta name="twitter:title" content="{{ $page->meta_title }}">
|
||||
<meta name="twitter:description" content="{{ $page->meta_description }}">
|
||||
<meta name="twitter:creator" content="@author_handle">
|
||||
<meta name="twitter:image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
|
||||
<!-- Open Graph data -->
|
||||
<meta property="og:title" content="{{ $page->meta_title }}" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="{{ URL($page->slug) }}" />
|
||||
<meta property="og:image" content="{{ uploaded_asset($page->meta_img) }}" />
|
||||
<meta property="og:description" content="{{ $page->meta_description }}" />
|
||||
<meta property="og:site_name" content="{{ env('APP_NAME') }}" />
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="pt-4 mb-4">
|
||||
<div class="container text-center">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 text-center text-lg-left">
|
||||
<h1 class="fw-600 h4">{{ $page->getTranslation('title') }}</h1>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<ul class="breadcrumb bg-transparent p-0 justify-content-center justify-content-lg-end">
|
||||
<li class="breadcrumb-item has-transition opacity-50 hov-opacity-100">
|
||||
<a class="text-reset" href="{{ route('home') }}">{{ translate('Home')}}</a>
|
||||
</li>
|
||||
<li class="text-dark fw-600 breadcrumb-item">
|
||||
"{{ translate('Support Policy') }}"
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="mb-4">
|
||||
<div class="container">
|
||||
<div class="p-4 bg-white rounded shadow-sm overflow-hidden mw-100 text-left">
|
||||
@php
|
||||
echo $page->getTranslation('content');
|
||||
@endphp
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
||||
61
resources/views/frontend/policies/terms.blade.php
Normal file
61
resources/views/frontend/policies/terms.blade.php
Normal file
@@ -0,0 +1,61 @@
|
||||
@extends('frontend.layouts.app')
|
||||
|
||||
@section('meta_title'){{ $page->meta_title }}@stop
|
||||
|
||||
@section('meta_description'){{ $page->meta_description }}@stop
|
||||
|
||||
@section('meta_keywords'){{ $page->tags }}@stop
|
||||
|
||||
@section('meta')
|
||||
<!-- Schema.org markup for Google+ -->
|
||||
<meta itemprop="name" content="{{ $page->meta_title }}">
|
||||
<meta itemprop="description" content="{{ $page->meta_description }}">
|
||||
<meta itemprop="image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
|
||||
<!-- Twitter Card data -->
|
||||
<meta name="twitter:card" content="website">
|
||||
<meta name="twitter:site" content="@publisher_handle">
|
||||
<meta name="twitter:title" content="{{ $page->meta_title }}">
|
||||
<meta name="twitter:description" content="{{ $page->meta_description }}">
|
||||
<meta name="twitter:creator" content="@author_handle">
|
||||
<meta name="twitter:image" content="{{ uploaded_asset($page->meta_img) }}">
|
||||
|
||||
<!-- Open Graph data -->
|
||||
<meta property="og:title" content="{{ $page->meta_title }}" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="{{ URL($page->slug) }}" />
|
||||
<meta property="og:image" content="{{ uploaded_asset($page->meta_img) }}" />
|
||||
<meta property="og:description" content="{{ $page->meta_description }}" />
|
||||
<meta property="og:site_name" content="{{ env('APP_NAME') }}" />
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="pt-4 mb-4">
|
||||
<div class="container text-center">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 text-center text-lg-left">
|
||||
<h1 class="fw-600 h4">{{ $page->getTranslation('title') }}</h1>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<ul class="breadcrumb bg-transparent p-0 justify-content-center justify-content-lg-end">
|
||||
<li class="breadcrumb-item has-transition opacity-50 hov-opacity-100">
|
||||
<a class="text-reset" href="{{ route('home') }}">{{ translate('Home')}}</a>
|
||||
</li>
|
||||
<li class="text-dark fw-600 breadcrumb-item">
|
||||
"{{ translate('Terms & conditions') }}"
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="mb-4">
|
||||
<div class="container">
|
||||
<div class="p-4 bg-white rounded shadow-sm overflow-hidden mw-100 text-left">
|
||||
@php
|
||||
echo $page->getTranslation('content');
|
||||
@endphp
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user