File "products.php"

Full path: /home/zvmcccat/public_html/adn/products.php
File size: 1.24 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
require_once __DIR__ . '/includes/config.php';

$meta_title = 'Products';
$meta_description = 'Direct sales — gas suppression, water mist, foam, trace tube, kitchen hood, fire alarm and infrastructure products from AIRfire, ARMANfire, Bosch, Kentec and more.';
$current_page = 'products';
require __DIR__ . '/includes/header.php';

$page_h1 = 'Products';
$page_lede = 'Electromechanical and gas-suppression products, sold direct to contractors, consultants and facility owners.';
require __DIR__ . '/includes/partials/page-hero.php';

$products = alpha_load_data('products.php');
?>

<section class="pad">
    <?php if (!empty($products)): ?>
        <div class="products-catalog">
            <?php foreach ($products as $product): ?>
                <?php include __DIR__ . '/includes/partials/product-card.php'; ?>
            <?php endforeach; ?>
        </div>
    <?php else: ?>
        <p style="text-align:center; color: var(--text-muted);">Product catalog is being updated — contact us directly for current availability.</p>
    <?php endif; ?>

    <div style="text-align:center; margin-top:48px;">
        <a class="btn btn-accent" href="contact.php">Request a Quote</a>
    </div>
</section>

<?php require __DIR__ . '/includes/footer.php'; ?>