Viewing file: e9175099b93973f43265725b71cb4acdf417b53d.php (1.4 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('page_title', $page->name); ?>
<?php $__env->startSection('seo'); ?>
<?php echo $__env->make('site.pages.seo', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('css'); ?>
<?php if($page->css): ?>
<style>
<?php echo $page->css; ?>
</style>
<?php endif; ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<?php if($page->css): ?>
<div>
<?php echo $page->description; ?>
</div>
<?php else: ?>
<section class="text-gray-600 body-font">
<div class="mx-4 lg:mx-4 xl:mx-32 2xl:mx-64 3xl:mx-92">
<div class="flex flex-col text-center w-full mb-10 mt-10">
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-gray-900"><?php echo e($page->name); ?></h1>
</div>
<div class="blog-page-description">
<?php echo $page->description; ?>
</div>
</div>
</section>
<?php endif; ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('../site/layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/ecom1.picotech.app/public_html/resources/views/site/pages/page.blade.php ENDPATH**/ ?>
|