10 lines
209 B
PHP
10 lines
209 B
PHP
<?php include 'structure/header.php'; ?>
|
|
<?php include 'structure/navbar.php'; ?>
|
|
|
|
<main class="container mt-5">
|
|
<?php include $content; ?>
|
|
</main>
|
|
|
|
<?php include 'structure/footer.php'; ?>
|
|
</body>
|
|
</html>
|