A Qcodo based CMS/ecommerce framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
775 B

12 years ago
  1. <?php
  2. // This example header.inc.php is intended to be modfied for your application.
  3. ?>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=<?php _p(QApplication::$EncodingType); ?>" />
  8. <?php
  9. if (isset($strPageTitle))
  10. print "<title> $strPageTitle </title>";
  11. $stylesheet = __CSS_ASSETS__ . "/styles.css";
  12. if (file_exists( __DOCROOT__ . $stylesheet) )
  13. print '<link rel="stylesheet" type="text/css" href="' . __VIRTUAL_DIRECTORY__ . $stylesheet . '">';
  14. else
  15. print "Stylesheet missing - flying naked ..<br />\n";
  16. ?>
  17. </head><body>