BLACKSITE
:
216.73.216.62
:
147.93.18.13 / vinyasaweddings.com
:
Linux srv667811 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
:
/
var
/
www
/
mochiwale
/
views
/
Upload File:
files >> /var/www/mochiwale/views/prices.php
<?php $activePage = 'prices'; // Default fallback values $pageTitle = "Shoe Cleaning Services in Delhi | Mochi Wale"; $pageDescription = "Get premium shoe cleaning, protection, and recoloring services by Mochi Wale. Book pickup today!"; $pageKeywords = "shoe cleaning, leather care, shoe protection, shoe recoloring, Delhi, Mochi Wale"; // Fetch SEO data from DB $stmt = $db->prepare("SELECT seo_title, seo_keywords, seo_description FROM pages WHERE page_name = ?"); $stmt->execute([$activePage]); $data = $stmt->fetch(PDO::FETCH_ASSOC); if ($data) { $pageTitle = $data['seo_title'] ?: $pageTitle; $pageKeywords = $data['seo_keywords'] ?: $pageKeywords; $pageDescription = $data['seo_description'] ?: $pageDescription; } require 'views/layout/header.php'; ?> <?php // Fetch all active services from the database $stmt = $db->prepare("SELECT * FROM services WHERE status = 'active' ORDER BY id DESC"); $stmt->execute(); $services = $stmt->fetchAll(PDO::FETCH_ASSOC); ?> <!-- <div class="breadcrumb-hero position-relative"> <div class="breadcrumb-bg"> <img src="https://images.unsplash.com/photo-1600185365483-26d7a4cc7519?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80" alt="Background" class="img-fluid w-100"> <div class="breadcrumb-overlay"></div> </div> <div class="breadcrumb-content position-relative text-center text-white"> <div class="container"> <h1 class="page-title display-4 fw-bold mb-3">Prices</h1> <nav aria-label="breadcrumb"> <ol class="breadcrumb justify-content-center mb-0"> <li class="breadcrumb-item"> <a href="/" class="text-white text-decoration-none">Home</a> </li> <li class="breadcrumb-item active text-primary" aria-current="page">Prices</li> </ol> </nav> </div> </div> </div> --> <?php require 'views/layout/hero.php'; ?> <section class="services-cards-section py-5"> <div class="container"> <div class="section-header text-center mb-5"> <h2 class="section-title">Our Premium Services</h2> <p class="section-subtitle">Expert care for your luxury items</p> </div> <div class="row g-4"> <?php if (!empty($services)): ?> <?php foreach ($services as $service): ?> <div class="col-lg-4 col-md-6"> <div class="service-card h-100 d-flex flex-column"> <div class="service-img"> <img src="<?= BASE_URL ?>/uploads/services/<?= htmlspecialchars($service['image']) ?>" alt="<?= htmlspecialchars($service['title']) ?>" class="img-fluid object-fit-contain"> </div> <div class="service-body d-flex flex-column"> <h3 class="service-title"><?= htmlspecialchars($service['title']) ?></h3> <div class="service-description mb-3"> <?= $service['description'] ?> <!-- Supports Jodit-formatted HTML --> </div> <div class="text-center mt-auto pt-3"> <button class="btn btn-service" data-bs-toggle="modal" data-bs-target="#enquiryModal"> Book Now <i class="fas fa-arrow-right ms-2"></i> </button> </div> </div> </div> </div> <?php endforeach; ?> <?php else: ?> <div class="col-12 text-center"> <p>No services found.</p> </div> <?php endif; ?> </div> </div> </section> <?php require 'views/layout/enquiry.php'; ?> <?php require 'views/layout/enquiry-modal.php'; ?> <?php require 'views/layout/footer.php'; ?>