-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
27 lines (24 loc) · 834 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
session_start();
require './components/c_functions.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include_once './components/c_meta_pack.php' ?>
</head>
<body>
<div>
<?php require_once './components/c_nav.php' ?>
</div>
<div>
<?php include './components/c_pages.php' ?>
</div>
<div>
<?php include './components/c_footer.php' ?>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>