joomla page structure


/ Published in: HTML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php
  2. // no direct access
  3. defined( '_JEXEC' ) or die( 'Restricted access' );
  4. include_once (dirname(__FILE__).DS.'/ja_vars.php');
  5. ?>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>">
  8. <?php
  9. // Entfernt Mootools
  10. $headerstuff = $this->getHeadData();
  11. reset($headerstuff['scripts']);
  12. $moo = key($headerstuff['scripts']);
  13. unset($headerstuff['scripts'][$moo]);
  14. $this->setHeadData($headerstuff);
  15. ?>
  16. <jdoc:include type="head" />
  17. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  18. <meta name="description" content="" />
  19. <meta name="keywords" content="" />
  20. <meta name="author" content="" />
  21. <meta http-equiv="content-language" content="de" />
  22.  
  23. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  24.  
  25. <link rel="stylesheet" type="text/css" href="" media="screen" />
  26.  
  27. <!--[if lte IE 6]><link rel="stylesheet" href="" media="screen, projection" /><![endif]-->
  28. <!--[if lte IE 7]><link rel="stylesheet" href="" media="screen, projection" /><![endif]-->
  29. <!--[if lte IE 8]><link rel="stylesheet" href="" media="screen, projection" /><![endif]-->
  30.  
  31. <script type="text/javascript" src=""></script>
  32.  
  33. </head>
  34.  
  35. </body>
  36. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.