Slashblog
[ class tree: Slashblog ] [ index: Slashblog ] [ all elements ]

Source for file index.php

Documentation is available at index.php

  1. <?php
  2.     require_once 'config.php';
  3.     
  4.     $blog new Blog();
  5.     $blog->Authenticate();
  6.     $blog->LoadPosts();
  7. ?>
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  9. <html xmlns="http://www.w3.org/1999/xhtml">
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  12. <title><?php $blog->BlogTitle()?></title>
  13. <link href="css/style.css" rel="stylesheet" type="text/css" />
  14. <script src="scripts/showmenu.js" type="text/javascript"></script>
  15. </head>
  16.  
  17. <body>
  18. <?php require_once 'header.php'?>
  19. <div id="content">
  20. <?php 
  21.     require_once $blog->CurrentPage();
  22. ?>
  23. </div>
  24. <?php require_once 'footer.php'?>
  25. </body>
  26. </html>

Documentation generated on Mon, 26 May 2008 19:59:42 +0100 by phpDocumentor 1.4.0