-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
87 lines (67 loc) · 2.35 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en" class="max-width-d">
<?php include 'src/pages/head.php'; ?>
<body class="dark-arshia max-width-d">
<!-- Preloader -->
<div id="line-loader">
<div class="middle-line"></div>
</div>
<!-- Menu Overlay Mobile -->
<div class="menu-overlay d-none"></div>
<!-- Right Side Start -->
<?php include 'src/pages/right_side_bar.php'; ?>
<!-- Right Side End -->
<!-- Left Side Start -->
<?php include 'src/pages/left_side_bar.php'; ?>
<!-- Left Side End -->
<!-- Main Start -->
<main id="main" class="main-2">
<!-- Home Start -->
<?php include 'src/pages/home.php'; ?>
<!-- Home End -->
<!-- About Start -->
<?php include 'src/pages/about.php'; ?>
<!-- About End -->
<!-- Resume Start -->
<?php include 'src/pages/resume.php'; ?>
<!-- Resume End -->
<!-- Portfolio Start -->
<?php include 'src/pages/portfolio.php'; ?>
<!-- Portfolio End -->
<!-- Blog Start -->
<?php include 'src/pages/blog.php'; ?>
<?php include 'src/pages/blogs/blog1.php'; ?>
<!-- Blog End -->
<!-- Contact Start -->
<?php include 'src/pages/contact.php'; ?>
<!-- Contact End -->
</main>
<!-- Main End -->
<!-- Mobile Next and Prev Button Start -->
<div class="next-prev-page d-block d-lg-none">
<button type="button" class="prev-page bg-base-color hstack">
<i class="bi bi-chevron-compact-left mx-auto"></i>
</button>
<button type="button" class="next-page bg-base-color mt-1 mt-lg-3 hstack">
<i class="bi bi-chevron-compact-right mx-auto"></i>
</button>
</div>
<!-- Mobile Next and Prev Button End -->
<!-- Navbar Button Mobile Start -->
<div class="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<!-- Navbar Button Mobile End -->
<!-- Background Shapes Start -->
<?php include 'src/pages/background_shapes.php'; ?>
<!-- Background Shapes End -->
<!-- Mouase Magic Cursor Start -->
<div class="m-magic-cursor mmc-outer"></div>
<div class="m-magic-cursor mmc-inner"></div>
<!-- Mouase Magic Cursor End -->
<!-- JavaScripts -->
<?php include 'src/pages/js.php'; ?>
</body>
</html>