16 lines
347 B
PHP
16 lines
347 B
PHP
<?php
|
|
$pageTitle = 'Automotives';
|
|
require_once __DIR__ . '/includes/header.php';
|
|
?>
|
|
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="card p-5 text-center">
|
|
<h1>Automotives</h1>
|
|
<p>This is the page for Automotives.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once __DIR__ . '/includes/footer.php'; ?>
|