-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
55 lines (48 loc) · 1.94 KB
/
Copy pathindex.php
File metadata and controls
55 lines (48 loc) · 1.94 KB
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
<?php
include_once("resources/templates/mainpage/masthead.html");
?>
<!-- Row section to get auto spaces from left and right of margin -->
<body>
<div class="row">
<div id="content">
<!-- Page header lies here for layout -->
<?php include("resources/templates/mainpage/header.html"); ?>
<!-- Page header for layout ends here -->
<!-- top-bar begins here for layout -->
<?php include("resources/templates/mainpage/navbar.html"); ?>
<!-- Top bar ends here -->
</div>
</div>
<!-- Wrapper collumn large-8 comes after header -->
<div class="row collapse wrapper">
<!-- New foundation row inside wrapper for layout -->
<div class="columns large-9 main-nav">
<?php include("resources/templates/mainpage/slider.html"); ?>
<div class="row ">
<div class="medium-3 columns">
<!-- left bar section -->
<?php include("resources/templates/mainpage/leftbar.html"); ?>
<!-- left bar section ends -->
</div>
<div class="medium-9 columns index">
<?php include("resources/templates/layout/index.html"); ?>
</div>
</div>
</div>
<!-- Side nav for layout.Has login and order form for page -->
<div class="side-nav columns large-3">
<!-- right side bar begins here -->
<?php include("resources/templates/mainpage/rightbar.html"); ?>
<!-- right side bar ends here -->
</div>
<!-- Side nav for layout ends here -->
<!-- Wrapper form for main page ends here -->
</div>
<!-- Footer section for layout begins here -->
<?php include("resources/templates/mainpage/footer.html"); ?>
<!-- Footer css ends here -->
<!-- Footer scripts begin here -->
<?php include("resources/templates/mainpage/footer_scripts.html"); ?>
<!-- Footer scripts end here -->
</body>
</html>