MOON
Server: Apache
System: Linux server1.studioinfinity.com.br 2.6.32-954.3.5.lve1.4.90.el6.x86_64 #1 SMP Tue Feb 21 12:26:30 UTC 2023 x86_64
User: artinside (517)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/artinside/sites.artinside.com.br/iande/themes/web/cases.php
<?php

$this->layout("_theme");
$this->insert("views/page-title", ["pageTitle" => $pageTitle]);
?>

<section id="content">
    <div class="content-wrap py-0">
        <div id="portfolio" class="portfolio portfolio-parallax row desc-lg">

            <?php foreach ($cases AS $case): ?>
            <article class="portfolio-item col-12 pf-media pf-icons">
                <div class="grid-inner">
                    <div class="portfolio-image parallax scroll-detect">
                        <img src="<?= image($case->cover, 1920)?>" class="parallax-bg">
                    </div>
                    <!-- Overlay: Start -->
                    <div class="bg-overlay">
                        <div class="bg-overlay-content dark flex-column" data-hover-animate="fadeIn">
                            <!-- Decription: Start -->
                            <div class="portfolio-desc m-0 pt-0 text-center" data-hover-animate="fadeInDownSmall" data-hover-animate-out="fadeOutUpSmall" data-hover-speed="350">
                                <h3><a href="cases/<?= $case->uri ?>"><?= $case->title ?></a></h3>
                                <h4 class="font-primary m-0"><?= $case->subtitle ?></h4>
                                <a href="#"
                                   class="badge bg-color h-bg-dark h-text-light all-ts py-2 px-3 mb-0 mt-3"><?= $case->status == 1 ? "Case Iandé" : "Case de mercado" ?></a>
                            </div>
                            <!-- Description: Start -->
                            <div class="d-flex">
                                <a href="cases/<?= $case->uri ?>" class="overlay-trigger-icon bg-light text-dark" data-hover-animate="fadeInUpSmall" data-hover-animate-out="fadeOutDownSmall" data-hover-speed="350"><i class="bi-arrow-right"></i></a>
                            </div>
                        </div>
                        <div class="bg-overlay-bg dark" data-hover-animate="fadeIn"></div>
                    </div>
                    <!-- Overlay: End -->
                </div>
            </article>
            <?php endforeach; ?>
        </div>
    </div>
</section>

        <?php
        $this->insert("views/newsletter-widget2"); ?>


    </div>
</section>