-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
73 lines (72 loc) · 3.39 KB
/
index.php
File metadata and controls
73 lines (72 loc) · 3.39 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/*======================================================================*\
|| #################################################################### ||
|| # Package - Joomla Template based on YJSimpleGrid Framework ||
|| # Copyright (C) since 2007 Youjoomla.com . All Rights Reserved. ||
|| # license - PHP files are licensed under GNU/GPL V2 ||
|| # license - CSS - JS - IMAGE files are Copyrighted material ||
|| # bound by Proprietary License of Youjoomla.com ||
|| # for more information visit http://www.youjoomla.com/license.html ||
|| # Redistribution and modification of this software ||
|| # is bounded by its licenses ||
|| # websites - http://www.youjoomla.com | http://www.yjsimplegrid.com ||
|| #################################################################### ||
\*======================================================================*/
/*
Joomla! Template Based on YJSG Framework @since 2.0.0
*/
defined( '_JEXEC' ) or die( 'Restricted index access' );
if (!defined( 'YJSGRUN' )) {
echo JText::_('YJSG_PLUGIN_NOT_FOUND');
exit;
}
require( YJSGCORE_PATH );/* YJSGFramework main functions*/
?>
<!DOCTYPE html>
<html xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" class="<jdoc:include type="htmlclass" />">
<head>
<?php require( YJSG_HEAD );/* <head> files containing css , js and conditions */?>
</head>
<body id="stylef<?php echo $default_font_family ?>" class="yjsgbody style_<?php echo $css_file.$browserClassName.$rtlClass ?>">
<div id="centertop" class="centered yjsgsitew">
<?php yjsg_print_grid_area('yjsg1'); /* grid 1 top1=top5 */ ?>
<?php require( YJSG_HEADERBLOCK );/* header - header grid */?>
</div>
<?php
if($topMenuLocation == 0 ){ /* if topmenu location is inside the header we dont need it here */
require( YJSG_TOPMENU );/* top menu */
}
?>
<?php yjsg_print_grid_area('yjsg2',true,$yjsg2_before,$yjsg2_after);/* grid 2 adv1-adv5*/ ?>
<?php yjsg_print_grid_area('yjsg3',true);/*grid 3 user1-user5*/ ?>
<?php yjsg_print_grid_area('yjsg4',true,$yjsg4_before,$yjsg4_after);/* grid4 user6-user10*/ ?>
<!-- end centartop-->
<div id="centerbottom" class="centered yjsgsitew">
<?php require( $yjsg_loadlayout );/* mid grid - mainbody grids*/?>
<?php require( YJSG_PATHWAY );/* pathway including breadcrumb module position */ ?>
</div>
<!-- end centerbottom-->
<?php yjsg_print_grid_area('yjsg5',true);/* grid 5 user11-user15*/ ?>
<?php yjsg_print_grid_area('yjsg6',true,$yjsg6_before,$yjsg6_after);/* grid 6 user16-user20*/ ?>
<?php yjsg_print_grid_area('yjsg7',true,$yjsg7_before,$yjsg7_after);/* grid 7 user21-user25*/ ?>
<div class="footer_out yjsgouts">
<?php require( YJSG_FOOTER );/* footer - footer menu , copyright , YJSG logo , validation links*/ ?>
</div>
<?php require( YJSG_NOTICES );/* IE6 and nonscript notices*/?>
<?php
if($responsive_on == 1 && ($topmenu_off == 2 || $itemid == 0 )) {
require( YJSG_MOBILEMENU );/* responsive menu select list loaded at the end . better for seo */
}
?>
<?php
if ($this->countModules('sidepanel') || $yjsgBotPanel_loaded || $yjsgTopPanel_loaded) {
require( YJSG_PANELS );/* Sliding panels */
}
?>
<?php
if ($this->countModules('offcanvas')) {
require( YJSG_OFFCANVAS );/* Off canvas panel */
}
?>
</body>
</html>