🤩 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:team.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 Team</h1> <p class="lead text-white-50 fade-in-up delay-1">Meet the professionals driving our company forward</p> </div> </section> <!-- Team Section --> <section class="section-padding"> <div class="container"> <div class="row align-items-center mb-5 fade-in-up"> <div class="col-lg-6"> <h2 class="font-outfit fw-bold text-navy mb-4">Meet the Team</h2> <div class="bg-gold" style="width: 60px; height: 3px; border-radius: 2px; margin-bottom: 25px;"></div> <p class="fs-5 text-secondary"> We believe that our greatest asset is our talented and dedicated team of professionals. Get to know the individuals who drive our company forward. </p> </div> </div> <div class="row g-4"> <?php if(!empty($data['team'])): foreach($data['team'] as $index => $member): $delay_class = 'delay-' . ($index % 4); ?> <div class="col-lg-3 col-md-6 fade-in-up <?php echo $delay_class; ?>"> <div class="team-card text-center p-4 bg-light-gray h-100 rounded-4 shadow-sm border-bottom border-4 border-navy"> <div class="mb-4"> <div class="bg-white rounded-circle mx-auto d-flex align-items-center justify-content-center shadow-sm border border-3 border-gold" style="width: 130px; height: 130px; overflow:hidden;"> <?php if(!empty($member->photo_url)): ?> <img src="<?php echo URLROOT; ?>/<?php echo ltrim(htmlspecialchars($member->photo_url), '/'); ?>" alt="<?php echo htmlspecialchars($member->name); ?>" style="width: 100%; height: 100%; object-fit: cover;"> <?php else: ?> <i class="fas fa-user-tie text-navy" style="font-size: 4.5rem;"></i> <?php endif; ?> </div> </div> <h5 class="font-outfit fw-bold mb-1"><?php echo htmlspecialchars($member->name); ?></h5> <p class="text-gold fw-semibold small text-uppercase tracking-wide"><?php echo htmlspecialchars($member->designation); ?></p> </div> </div> <?php endforeach; else: ?> <div class="col-12 text-center text-muted py-5"> <p>No team members currently listed.</p> </div> <?php endif; ?> </div> </div> </section> <?php require APPROOT . '/views/layouts/footer.php'; ?>
Save Changes
Cancel
Create New File
Create New Folder