60 lines
2.4 KiB
PHP
60 lines
2.4 KiB
PHP
@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">
|
|
"{{ $page->title }}"
|
|
</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
|