Server IP : / Your IP : 10.244.4.16 [ Web Server : nginx/1.25.3 System : Linux escuela-portal-app-54f56585bc-kst6g 5.15.0-1084-azure #93-Ubuntu SMP Sat Mar 15 14:12:29 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.2.13 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/app/storage/framework/views/ |
Upload File : |
<?php if($data->count() == 1): ?> <section id="hero-<?php echo e($data->first()->id); ?>" style="background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('<?php echo e(asset($data->first()->imagen)); ?>'); background-position: center; padding-top: 120px; padding-bottom: 50px; min-height: 392px;" class="bg-scroll hero-section division"> <div class="container"> <div class="row d-flex align-items-center"> <!-- HERO TEXT --> <div class="col-md-12"> <div class="hero-txt mb-40 white-color"> <!-- Title --> <h4><?php echo e($data->first()->name); ?></h4> <!-- Text --> <p class="p-md"><?php echo e($data->first()->description); ?></p> </div> </div> <!-- END HERO TEXT --> </div> <!-- End row --> </div> <!-- End container --> </section> <!-- END HERO-9 --> <?php elseif($data->count() > 1): ?> <section id="hero-banner" class="hero-section division"> <div class="slider"> <ul class="slides"> <!-- SLIDE #1 --> <?php $__currentLoopData = $data; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <!-- SLIDE #3 --> <li id="slide-<?php echo e($item->id); ?>"> <!-- Background Image --> <img src="<?php echo e($item->imagen); ?>" alt="slide-background"> <!-- Image Caption --> <div class="caption d-flex align-items-center right-align"> <div class="container"> <div class="row"> <div class="col-md-8 col-lg-7"> <div class="caption-txt white-color"> <!-- Title --> <h3 class="h3-sm"><?php echo e($item->name); ?></h3> <!-- Text --> <p class="p-lg"><?php echo e($item->description); ?> </p> <?php if($item->action['include']): ?> <!-- Button --> <a href="<?php echo e($item->action['link']); ?>" class="btn btn-md btn-amarillo tra-black-hover"><?php echo e($item->action['name']); ?></a> <?php endif; ?> </div> </div> </div> <!-- End row --> </div> <!-- End container --> </div> <!-- End Image Caption --> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> <!-- END SLIDER --> </section> <!-- END HERO-1 --> <?php endif; ?> <?php /**PATH /var/www/app/resources/views/website/pages/partials/_banner.blade.php ENDPATH**/ ?>