-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathtemplate.php
38 lines (37 loc) · 1.32 KB
/
template.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
<?php defined('BASEPATH') || exit('No direct script access allowed'); ?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<?php $this->load->view("$folder_themes/commons/meta"); ?>
<!-- </head> -->
</head>
<body onLoad="renderDate()">
<a class="scrollToTop" href="#"><i class="fa fa-angle-up"></i></a>
<div class="container" style="background-color: #f6f6f6;">
<header id="header">
<?php $this->load->view("$folder_themes/partials/header"); ?>
</header>
<div id="navarea">
<?php $this->load->view("$folder_themes/partials/menu_head"); ?>
</div>
<div class="row">
<section>
<div class="content_bottom">
<div class="col-lg-9 col-md-9">
<?php $this->load->view("$folder_themes/partials/bottom_content_left"); ?>
</div>
<div class="col-lg-3 col-md-3">
<?php $this->load->view("$folder_themes/partials/bottom_content_right"); ?>
</div>
</div>
</section>
</div>
</div>
<footer id="footer">
<?php $this->load->view("$folder_themes/partials/footer_top"); ?>
<?php $this->load->view("$folder_themes/partials/footer_bottom"); ?>
</footer>
<?php $this->load->view("$folder_themes/commons/meta_footer"); ?>
</body>
</html>