36214-vm/blog.php
Flatlogic Bot bec9c2de3b 12
2025-11-24 17:15:40 +00:00

32 lines
1.1 KiB
PHP

<?php
$page_title = "Travel Blog";
require_once 'partials/header.php';
?>
<main id="main">
<!-- ======= Breadcrumbs ======= -->
<section class="breadcrumbs">
<div class="container">
<h2><?php echo $page_title; ?></h2>
<p>Travel stories, tips, and inspiration from our team of experts.</p>
</div>
</section><!-- End Breadcrumbs -->
<section class="container py-5">
<div class="row">
<div class="col-lg-8 offset-lg-2 text-center">
<h1 class="mb-4">Our Blog is Coming Soon</h1>
<p class="lead">We are busy writing and curating inspiring travel stories, guides, and tips for you. Check back soon to explore our collection of articles that will help you plan your next adventure.</p>
<p>From hidden gems to iconic landmarks, our blog will be your go-to resource for all things travel.</p>
<div class="mt-4">
<i class="bi bi-pencil-square fs-1 text-primary"></i>
</div>
</div>
</div>
</section>
</main><!-- End #main -->
<?php require_once 'partials/footer.php'; ?>