Показать сообщение отдельно
  #15 (permalink)  
Старый 18.02.2011, 22:10
Новичок на форуме
Отправить личное сообщение для izlife Посмотреть профиль Найти все сообщения от izlife
 
Регистрация: 17.02.2011
Сообщений: 9

<?php
/**
 * @copyright	Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
 * @license		GNU/GPL, see LICENSE.php
 * Joomla! is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * See COPYRIGHT.php for copyright notices and details.
 */

defined('_JEXEC') or die('Restricted access');
$document = &JFactory::getDocument();
$logolink = $this->params->get("logolink", $this->baseurl);
$logotarget = $this->params->get("logotarget", "self");
$logotext = $this->params->get("logotext", $mainframe->getCfg('sitename'));
// $_SESSION[imprezzParams] = $this->params->get("pimpFrontpageDisplay");

$url = clone(JURI::getInstance());
?>
<?php echo '<?xml version="1.0" encoding="utf-8"?'.'>'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.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>
	<jdoc:include type="head" />

<script type="text/javascript" src="/templates/main/jquery.js"></script>
<script type="text/javascript">


$(document).ready(function(){
    $("#box a").click(function(){
 var link = this;
		$("#sidebar").animate({opacity: "1", left: "+=230"})
		$(".footer2").animate({opacity: "1", left: "+=230"})
        $(".bgimage").animate({opacity: "0.3"})
    }); 
});

    </script> 
    


	<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/main/style.css" type="text/css" />
	<!--[if IE]>
		<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/main/ie.css" type="text/css" />
	<![endif]-->



</head>
<body>



	<div id="breadcrumbs">				
		<jdoc:include type="modules" name="breadcrumbs" />
	</div>
	
	<div class="primarynav">
	
		<jdoc:include type="modules" name="top" style="list" />
		<? if ($this->countModules('syndicate')) { ?>
		<span class="topnav_rss">
			<!-- <a href="http://feeds.feedburner.com/productivedreams" class="topnav_rss">RSS</a> -->
			<jdoc:include type="modules" name="syndicate" />
		</span>
		<? } ?>
    </div>

    
    <div class="bgimage">
		<div id="page">	

			<div id="content"
				class="narrowcolumn <?=(JRequest::getCmd('layout')=='form'||JRequest::getCmd('task')=='edit') ? "editing" : "" ?>">

				<?php if ($this->getBuffer('message')) : ?>
				<div class="error">
					<h2>
						<?php echo JText::_('Message'); ?>
					</h2>
					<jdoc:include type="message" />
				</div>
				<?php endif; ?>
				<jdoc:include type="component" style="xhtml" />
				
			</div>
	
	
		<? if (JRequest::getCmd('layout') != 'form' ) { ?>
			<!-- SIDEBAR -->
			<div id="sidebar">
            <div class="sidebar">
			<h1 class="logo">
				<a class="logo" href="<?=$logolink?>" target="_<?=$logotarget?>"><?=$logotext?></a>
			</h1>
			
			
			
			
			    <div class="searchfield">
			    	<jdoc:include type="modules" name="search" />
			    </div>
		    
		
				<ul>
					<!--
					<li><h2>Author</h2>
						<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
					</li>
					-->
					<jdoc:include type="modules" name="left" style="imprezzDivision"  />
					
				</ul>
			</div>
		</div>
		
		<!-- SIDEBAR -->
		
		
		<div class="sidebar-right"> 
			
			<jdoc:include type="modules" name="right" style="imprezzSidebarRight"  />
			
		
		</div>
	<? } ?>

	</div> <!-- page -->
   <div class="footer">
    <div class="footer2">
</div> 
    
</div> <!-- bgimage -->



 <div id="footer">

	<div class="footerwrap">
	    <div class="copyright">
			<jdoc:include type="modules" name="footer" />
		</div>
	</div>
</div>
</div> 


<jdoc:include type="modules" name="debug" />
		
</body>
</html>
Ответить с цитированием