6476572754d53287d053388a144e42ea10c92e94.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php $__env->startSection('meta_title'); ?><?php echo e($page->meta_title); ?><?php $__env->stopSection(); ?>
  2. <?php $__env->startSection('meta_description'); ?><?php echo e($page->meta_description); ?><?php $__env->stopSection(); ?>
  3. <?php $__env->startSection('meta_keywords'); ?><?php echo e($page->tags); ?><?php $__env->stopSection(); ?>
  4. <?php $__env->startSection('meta'); ?>
  5. <!-- Schema.org markup for Google+ -->
  6. <meta itemprop="name" content="<?php echo e($page->meta_title); ?>">
  7. <meta itemprop="description" content="<?php echo e($page->meta_description); ?>">
  8. <meta itemprop="image" content="<?php echo e(uploaded_asset($page->meta_img)); ?>">
  9. <!-- Twitter Card data -->
  10. <meta name="twitter:card" content="website">
  11. <meta name="twitter:site" content="@publisher_handle">
  12. <meta name="twitter:title" content="<?php echo e($page->meta_title); ?>">
  13. <meta name="twitter:description" content="<?php echo e($page->meta_description); ?>">
  14. <meta name="twitter:creator" content="@author_handle">
  15. <meta name="twitter:image" content="<?php echo e(uploaded_asset($page->meta_img)); ?>">
  16. <!-- Open Graph data -->
  17. <meta property="og:title" content="<?php echo e($page->meta_title); ?>" />
  18. <meta property="og:type" content="website" />
  19. <meta property="og:url" content="<?php echo e(URL($page->slug)); ?>" />
  20. <meta property="og:image" content="<?php echo e(uploaded_asset($page->meta_img)); ?>" />
  21. <meta property="og:description" content="<?php echo e($page->meta_description); ?>" />
  22. <meta property="og:site_name" content="<?php echo e(env('APP_NAME')); ?>" />
  23. <?php $__env->stopSection(); ?>
  24. <?php $__env->startSection('content'); ?>
  25. <section class="pt-4 mb-4">
  26. <div class="container text-center">
  27. <div class="row">
  28. <div class="col-lg-6 text-center text-lg-left">
  29. <h1 class="fw-600 h4"><?php echo e($page->getTranslation('title')); ?></h1>
  30. </div>
  31. <div class="col-lg-6">
  32. <ul class="breadcrumb bg-transparent p-0 justify-content-center justify-content-lg-end">
  33. <li class="breadcrumb-item opacity-50">
  34. <a class="text-reset" href="<?php echo e(route('home')); ?>"><?php echo e(translate('Home')); ?></a>
  35. </li>
  36. <li class="text-dark fw-600 breadcrumb-item">
  37. <a class="text-reset" href="<?php echo e(route('terms')); ?>">"<?php echo e(translate('Terms & conditions')); ?>"</a>
  38. </li>
  39. </ul>
  40. </div>
  41. </div>
  42. </div>
  43. </section>
  44. <section class="mb-4">
  45. <div class="container">
  46. <div class="p-4 bg-white rounded shadow-sm overflow-hidden mw-100 text-left">
  47. <?php
  48. echo $page->getTranslation('content');
  49. ?>
  50. </div>
  51. </div>
  52. </section>
  53. <?php $__env->stopSection(); ?>
  54. <?php echo $__env->make('frontend.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /www/wwwroot/www.easybuyjp.shop/resources/views/frontend/policies/terms.blade.php ENDPATH**/ ?>