-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
31 lines (30 loc) · 880 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
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TrueWalls</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="css/custom.css"/>
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<!--<link rel="stylesheet" type="text/css" href="css/debug.css">-->
</head>
<body>
<?php
#required user data
include('includes/requires.php');
#navbar
include('includes/navbar.php');
#top_header
include('includes/top_header.php');
#categories_boxes
include('includes/categories.php');
#profile_modal
include('includes/profile_modal.php');
#footer
include('includes/footer.php');
#included javascript
include('includes/scripts.php');
?>
</body>
</html>