Files
SimpleMVC/app/views/pages/index.php
T
bckelleyandbckelley a979c73924 init commit
2024-01-25 09:52:59 -06:00

9 lines
336 B
PHP

<?php require APP_ROOT . '/views/inc/header.php'; ?>
<div class="jumbotron jumbotron-fluid text-center">
<div class="container">
<h1 class="display-3"><?php echo $data['title']; ?></h1>
<p class="lead"><?PHP echo $data['description'] ?></p>
</div>
</div>
<?php require APP_ROOT . '/views/inc/footer.php'; ?>