PageRenderTime 45ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/administrator/templates/bluestork/index.php

https://github.com/joebushi/joomla
PHP | 122 lines | 102 code | 12 blank | 8 comment | 7 complexity | 961e73949251a1eba1b20a8d481e4ae5 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. <?php
  2. /**
  3. * @version $Id$
  4. * @package Joomla.Administrator
  5. * @subpackage templates.bluestork
  6. * @copyright Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
  7. * @license GNU General Public License version 2 or later; see LICENSE.txt
  8. */
  9. // No direct access.
  10. defined('_JEXEC') or die;
  11. $app = JFactory::getApplication();
  12. ?>
  13. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  14. <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" >
  15. <head>
  16. <jdoc:include type="head" />
  17. <link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
  18. <link href="templates/<?php echo $this->template ?>/css/template.css" rel="stylesheet" type="text/css" />
  19. <?php if ($this->direction == 'rtl') : ?>
  20. <link href="templates/<?php echo $this->template ?>/css/template_rtl.css" rel="stylesheet" type="text/css" />
  21. <?php endif; ?>
  22. <!--[if IE 7]>
  23. <link href="templates/<?php echo $this->template ?>/css/ie7.css" rel="stylesheet" type="text/css" />
  24. <![endif]-->
  25. <!--[if lte IE 6]>
  26. <link href="templates/<?php echo $this->template ?>/css/ie6.css" rel="stylesheet" type="text/css" />
  27. <![endif]-->
  28. <?php if ($this->params->get('useRoundedCorners')) : ?>
  29. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/rounded.css" />
  30. <?php else : ?>
  31. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/norounded.css" />
  32. <?php endif; ?>
  33. <?php if ($this->params->get('textBig')) : ?>
  34. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/textbig.css" />
  35. <?php endif; ?>
  36. <?php if ($this->params->get('highContrast')) : ?>
  37. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/highcontrast.css" />
  38. <?php endif; ?>
  39. </head>
  40. <body id="minwidth-body">
  41. <div id="border-top" class="h_blue">
  42. <div>
  43. <div>
  44. <span class="logo"><a href="http://www.joomla.org" target="_blank"><img src="templates/<?php echo $this->template ?>/images/logo.png" alt="Joomla!" /></a></span>
  45. <span class="title"><a href="index.php"><?php echo $this->params->get('showSiteName') ? $app->getCfg('sitename') : JText::_('Administration'); ?></a></span>
  46. </div>
  47. </div>
  48. </div>
  49. <div id="header-box">
  50. <div id="module-status">
  51. <jdoc:include type="modules" name="status" />
  52. </div>
  53. <div id="module-menu">
  54. <jdoc:include type="modules" name="menu" />
  55. </div>
  56. <div class="clr"></div>
  57. </div>
  58. <div id="content-box">
  59. <div class="border">
  60. <div class="padding">
  61. <div id="toolbar-box">
  62. <div class="t">
  63. <div class="t">
  64. <div class="t"></div>
  65. </div>
  66. </div>
  67. <div class="m">
  68. <jdoc:include type="modules" name="toolbar" />
  69. <jdoc:include type="modules" name="title" />
  70. <div class="clr"></div>
  71. </div>
  72. <div class="b">
  73. <div class="b">
  74. <div class="b"></div>
  75. </div>
  76. </div>
  77. </div>
  78. <div class="clr"></div>
  79. <?php if (!JRequest::getInt('hidemainmenu')): ?>
  80. <jdoc:include type="modules" name="submenu" style="rounded" id="submenu-box" />
  81. <?php endif; ?>
  82. <jdoc:include type="message" />
  83. <div id="element-box">
  84. <div class="t">
  85. <div class="t">
  86. <div class="t"></div>
  87. </div>
  88. </div>
  89. <div class="m">
  90. <jdoc:include type="component" />
  91. <div class="clr"></div>
  92. </div>
  93. <div class="b">
  94. <div class="b">
  95. <div class="b"></div>
  96. </div>
  97. </div>
  98. </div>
  99. <noscript>
  100. <?php echo JText::_('WARNJAVASCRIPT') ?>
  101. </noscript>
  102. <div class="clr"></div>
  103. </div>
  104. <div class="clr"></div>
  105. </div>
  106. </div>
  107. <div id="border-bottom"><div><div></div></div></div>
  108. <jdoc:include type="modules" name="footer" style="none" />
  109. </body>
  110. </html>