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: //proc/self/cwd/raquel/themes/web/testimonials.php
<?php $v->layout("_theme");
$v->insert("views/page-title", ["pageTitle" => $pageTitle, "breadcrumb" => $breadcrumb]);
?>
<section id="content">

    <div class="content-wrap">
        <div class="container">

            <div class="row mt-4">
                <div class="col-12 text-center center-col mb-5">
                    <div class="heading-block mw-xs mx-auto text-center">
                        <h5 class="font-body text-uppercase ls2"><?= CONF_SITE_NAME ?></h5>
                        <h3 class="nott ls0 color-2">Depoimentos</h3>
                    </div>

                </div>
                <div class="clear"></div>

                <div class="col-12 ">
                    <ul class="testimonials-grid grid-1 grid-md-2 grid-lg-2">

                        <?php foreach ($testimonials as $testimonial): ?>
                        <li class="grid-item">
                            <div class="testimonial">
                                <div class="testi-image">
                                    <a href="#"><img src=" <?= image($testimonial->cover, 300, 300) ?>" alt="Customer Testimonails"></a>
                                </div>
                                <div class="testi-content">
                                    <p class=" font-small"><?= $testimonial->content ?></p>
                                    <div class="testi-meta">
                                        <?= $testimonial->author ?>
                                        <span><?= $testimonial->about ?></span>
                                    </div>
                                </div>
                            </div>
                        </li>
                        <?php endforeach;?>
                    </ul>

                </div>


            </div>
        </div>


    </div>
    <?php $v->insert("views/newsletter-widget-2"); ?>


</section><!-- #content end -->