[ Index ]

PHP Cross Reference of Joomla 1.5.26 DE

title

Body

[close]

/administrator/templates/khepri/ -> index.php (source)

   1  <?php
   2  /**
   3   * @copyright    Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
   4   * @license        GNU/GPL, see LICENSE.php
   5   * Joomla! is free software. This version may have been modified pursuant
   6   * to the GNU General Public License, and as distributed it includes or
   7   * is derivative of works licensed under the GNU General Public License or
   8   * other free or open source software licenses.
   9   * See COPYRIGHT.php for copyright notices and details.
  10   */
  11  
  12  // no direct access
  13  defined( '_JEXEC' ) or die( 'Restricted access' );
  14  ?>
  15  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  16  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo  $this->language; ?>" lang="<?php echo  $this->language; ?>" dir="<?php echo  $this->direction; ?>" id="minwidth" >
  17  <head>
  18  <jdoc:include type="head" />
  19  
  20  <link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
  21  <link href="templates/<?php echo  $this->template ?>/css/template.css" rel="stylesheet" type="text/css" />
  22  
  23  <?php if($this->direction == 'rtl') : ?>
  24      <link href="templates/<?php echo  $this->template ?>/css/template_rtl.css" rel="stylesheet" type="text/css" />
  25  <?php endif; ?>
  26  
  27  <!--[if IE 7]>
  28  <link href="templates/<?php echo  $this->template ?>/css/ie7.css" rel="stylesheet" type="text/css" />
  29  <![endif]-->
  30  
  31  <!--[if lte IE 6]>
  32  <link href="templates/<?php echo  $this->template ?>/css/ie6.css" rel="stylesheet" type="text/css" />
  33  <![endif]-->
  34  
  35  <?php if($this->params->get('useRoundedCorners')) : ?>
  36      <link rel="stylesheet" type="text/css" href="templates/<?php echo  $this->template ?>/css/rounded.css" />
  37  <?php else : ?>
  38      <link rel="stylesheet" type="text/css" href="templates/<?php echo  $this->template ?>/css/norounded.css" />
  39  <?php endif; ?>
  40  
  41  <?php if(JModuleHelper::isEnabled('menu')) : ?>
  42      <script type="text/javascript" src="templates/<?php echo  $this->template ?>/js/menu.js"></script>
  43      <script type="text/javascript" src="templates/<?php echo  $this->template ?>/js/index.js"></script>
  44  <?php endif; ?>
  45  
  46  </head>
  47  <body id="minwidth-body">
  48      <div id="border-top" class="<?php echo $this->params->get('headerColor','green');?>">
  49          <div>
  50              <div>
  51                  <span class="version"><?php echo  JText::_('Version') ?> <?php echo  JVERSION; ?></span>
  52                  <span class="title"><?php echo $this->params->get('showSiteName') ? $mainframe->getCfg( 'sitename' ) : JText::_('Administration'); ?></span>
  53              </div>
  54          </div>
  55      </div>
  56      <div id="header-box">
  57          <div id="module-status">
  58              <jdoc:include type="modules" name="status"  />
  59          </div>
  60          <div id="module-menu">
  61              <jdoc:include type="modules" name="menu" />
  62          </div>
  63          <div class="clr"></div>
  64      </div>
  65      <div id="content-box">
  66          <div class="border">
  67              <div class="padding">
  68                  <div id="toolbar-box">
  69                 <div class="t">
  70                  <div class="t">
  71                      <div class="t"></div>
  72                  </div>
  73              </div>
  74              <div class="m">
  75                  <jdoc:include type="modules" name="toolbar" />
  76                  <jdoc:include type="modules" name="title" />
  77                  <div class="clr"></div>
  78              </div>
  79              <div class="b">
  80                  <div class="b">
  81                      <div class="b"></div>
  82                  </div>
  83              </div>
  84            </div>
  85             <div class="clr"></div>
  86          <?php if (!JRequest::getInt('hidemainmenu')): ?>
  87          <jdoc:include type="modules" name="submenu" style="rounded" id="submenu-box" />
  88          <?php endif; ?>
  89          <jdoc:include type="message" />
  90          <div id="element-box">
  91              <div class="t">
  92                   <div class="t">
  93                      <div class="t"></div>
  94                   </div>
  95              </div>
  96              <div class="m">
  97                  <jdoc:include type="component" />
  98                  <div class="clr"></div>
  99              </div>
 100              <div class="b">
 101                  <div class="b">
 102                      <div class="b"></div>
 103                  </div>
 104              </div>
 105             </div>
 106          <noscript>
 107              <?php echo  JText::_('WARNJAVASCRIPT') ?>
 108          </noscript>
 109          <div class="clr"></div>
 110      </div>
 111      <div class="clr"></div>
 112  </div>
 113  </div>
 114      <div id="border-bottom"><div><div></div></div></div>
 115      <div id="footer">
 116          <p class="copyright">
 117              <a href="http://www.joomla.org" target="_blank">Joomla!</a>
 118              <?php echo  JText::_('ISFREESOFTWARE') ?>
 119          </p>
 120      </div>
 121  </body>
 122  </html>


Generated: Wed Mar 28 15:54:07 2012 Cross-referenced by PHPXref 0.7.1