🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:services.php
<?php require APPROOT . '/views/layouts/header.php'; ?> <!-- Page Header --> <section class="bg-navy text-white py-5"> <div class="container text-center pt-5 pb-3"> <h1 class="display-4 font-outfit fw-bold fade-in-up">Our Services</h1> <p class="lead text-white-50 fade-in-up delay-1">Comprehensive security solutions tailored for you</p> </div> </section> <!-- Services Grid --> <section class="section-padding"> <div class="container"> <div class="row g-4"> <?php if(!empty($data['services'])): foreach($data['services'] as $index => $srv): $delay_class = 'delay-' . ($index % 3 + 1); ?> <div class="col-lg-4 col-md-6 fade-in-up <?php echo $delay_class; ?>"> <div class="service-card p-4 h-100 border-top border-4 border-gold"> <div class="d-flex align-items-center mb-4"> <div class="service-icon mb-0 me-3" style="width: 50px; height: 50px; font-size: 1.5rem;"> <i class="fas <?php echo htmlspecialchars($srv->icon); ?>"></i> </div> <h4 class="font-outfit fw-bold mb-0 flex-grow-1"><?php echo htmlspecialchars($srv->title); ?></h4> </div> <p class="text-muted"><?php echo htmlspecialchars($srv->description); ?></p> </div> </div> <?php endforeach; else: ?> <div class="col-12 text-center text-muted py-5"> <p>No services currently listed.</p> </div> <?php endif; ?> </div> </div> </section> <!-- CTA --> <section class="py-5 bg-gold"> <div class="container text-center"> <h2 class="font-outfit fw-bold text-navy mb-4">Need a Tailored Security Solution?</h2> <a href="<?php echo URLROOT; ?>/pages/contact" class="btn btn-navy text-white rounded-pill px-5 py-3 fw-bold bg-navy shadow">Contact Us Today</a> </div> </section> <?php require APPROOT . '/views/layouts/footer.php'; ?>
Save Changes
Cancel
Create New File
Create New Folder