PageRenderTime 35ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

/administrator/templates/bluestork/component.php

https://github.com/joebushi/joomla
PHP | 29 lines | 17 code | 4 blank | 8 comment | 2 complexity | 0630a89233f39a7aa1ffc68d08129543 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. ?>
  12. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  13. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
  14. <head>
  15. <jdoc:include type="head" />
  16. <link href="templates/<?php echo $this->template ?>/css/template.css" rel="stylesheet" type="text/css" />
  17. <?php if ($this->direction == 'rtl') : ?>
  18. <link href="templates/<?php echo $this->template ?>/css/template_rtl.css" rel="stylesheet" type="text/css" />
  19. <?php endif; ?>
  20. </head>
  21. <body class="contentpane">
  22. <jdoc:include type="message" />
  23. <jdoc:include type="component" />
  24. </body>
  25. </html>