~ruvolof/+junk/RanfarTheme

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
88
89
90
91
92
93
<?php
/**
 * @package		Joomla.Site
 * @copyright	Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/* The following line loads the MooTools JavaScript Library */
JHtml::_('behavior.framework', true);

/* The following line gets the application object for things like displaying the site name */
$app = JFactory::getApplication();
?>
<?php echo '<?'; ?>xml version="1.0" encoding="<?php echo $this->_charset ?>"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
	<head>
		<!-- The following JDOC Head tag loads all the header and meta information from your site config and content. -->
		<jdoc:include type="head" />
		
		<!-- The following five lines load the Blueprint CSS Framework (http://blueprintcss.org). If you don't want to use this framework, delete these lines. -->
		<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/blueprint/screen.css" type="text/css" media="screen, projection" />
		<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/blueprint/print.css" type="text/css" media="print" />
		<!--[if lt IE 8]><link rel="stylesheet" href="blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
		<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/blueprint/plugins/fancy-type/screen.css" type="text/css" media="screen, projection" />
    	<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/blueprint/plugins/joomla-nav/screen.css" type="text/css" media="screen" />
    	
    	<!-- Thw following line loads the css files for lightbox -->
    	<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/lightbox.css" type="text/css" />

		<!-- The following line loads the template CSS file located in the template folder. -->
		<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css" type="text/css" />

		<!-- The following line loads the template JavaScript file located in the template folder. It's blank by default. -->
		<script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/template.js"></script>
		
		<!-- The following line loads lightbox library -->
		<script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/lightbox/jquery-1.7.2.min.js"></script>
		<script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/lightbox/lightbox.js"></script>
	</head>
	<body onload="initTemplate()">
            <div class="container" id="box">
		<div class="container" id="header">
			<hr />
			<div>
				<img id="logo" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/RanFar3.png" alt="Ranfar.com" width="1256" />
			</div>
		</div>
            
                <div id="nav-bar" class="container">    
                    <div class="float-left" id="left-topmenu">
                        <?php if($this->countModules('ranfar-topmenu')) : ?>
                                <jdoc:include type="modules" name="ranfar-topmenu" style="container" />
                        <?php endif; ?>
                    </div>
                    <div class="float-right" id="search-topmenu">
                        <?php if($this->countModules('ranfar-topmenu-search')) : ?>
                                <jdoc:include type="modules" name="ranfar-topmenu-search" style="container" />
                        <?php endif; ?>
                    </div>
                </div>


		<div class="container" id="contents-box">
			<?php if($this->countModules('ranfar-dockbar')) : ?>
			<div class="float-left" id="dockbar">
	        	<jdoc:include type="modules" name="ranfar-dockbar" />
			</div>
			<?php endif; ?>
			<div class="float-left" id="main-page">
			<?php if($this->countModules('ranfar-topquote')) : ?>
				<jdoc:include type="modules" name="ranfar-topquote" style="none" />
			<?php endif; ?>
				<jdoc:include type="message" />
				<jdoc:include type="component" />
				<hr />
			</div>
			<?php if($this->countModules('ranfar-rightsidebar')) : ?>
				<div id="right-sidebar" class="float-right">
	        		<jdoc:include type="modules" name="ranfar-rightsidebar" style="sidebar" />
				</div> 
			<?php endif; ?>

			<div class="container" id="footer">
				<hr />
				&copy; 2010-<?php echo date('Y'); ?> <?php echo $app->getCfg('sitename'); ?>
			</div>
		</div>
            </div>
	</body>
</html>