Advertisement
oxcore

"Gentlebreeze" for gpeasy CMS, Alpha V1.4 (template.php)

Mar 18th, 2012
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.07 KB | None | 0 0
  1.  
  2. <!--
  3. Design by Free CSS Templates
  4. http://www.freecsstemplates.org
  5. Released for free under a Creative Commons Attribution 2.5 License
  6. -------------------------------------------
  7. Name       : GentleBreeze
  8. Description: A two-column, fixed-width design with dark color scheme.
  9. Version    : 1.0
  10. Released   : 20120125
  11. -------------------------------------------
  12. Adapted by http://mangopix.de/
  13. Thanks to gpEasy.com (Forum)
  14. Version 1.0 pre-alpha version
  15. -->
  16.  
  17. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  18. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  19. <head>
  20.  
  21. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  22. <link href="http://fonts.googleapis.com/css?family=Oswald" rel="stylesheet" type="text/css" />
  23. <link href='http://fonts.googleapis.com/css?family=Arvo' rel='stylesheet' type='text/css'>
  24. <link href="Main/style.css" rel="stylesheet" type="text/css" media="screen" />
  25. <?php gpOutput::GetHead(); ?>
  26. </head>
  27. <body>
  28.  
  29. <div id="wrapper">
  30.     <div id="header-wrapper">
  31.         <div id="header">
  32.             <div id="logo">
  33.                 <?php gpOutput::Get('Extra','Head'); ?>
  34.             </div>
  35.         </div>
  36.     </div>
  37.     <!-- end #header -->
  38.     <div id="menu-wrapper">
  39.         <div id="menu">
  40.                 <?php $GP_ARRANGE = false; gpOutput::Get('Menu'); ?>
  41.         </div>
  42.     </div>
  43. <!-- end #menu -->
  44.  
  45. <div id="page">
  46.     <div id="page-bgtop">
  47.         <div id="page-bgbtm">
  48.             <div id="page-content">
  49.                 <div id="content">
  50.                     <?php $page->GetContent(); ?>
  51.                 </div>                 
  52.                    
  53. <!-- end #content -->
  54.                    
  55. <div id="sidebar">
  56.     <ul>
  57.         <li>
  58.         <?php gpOutput::Get('Extra','Side_Menu'); ?>
  59.         </li>
  60.        
  61.         <li>
  62.         <?php gpOutput::Get('Extra','Footer'); ?>
  63.         </li>
  64.        
  65.         <li>
  66.         <?php gpOutput::GetAllGadgets(); ?>
  67.         </li>
  68.        
  69.     </ul>
  70. </div>
  71. <!-- end #sidebar -->
  72.             </div>
  73.             <div style="clear: both;">&nbsp;</div>
  74.         </div>
  75.     </div>
  76. </div>
  77. </div>
  78. <!-- end #page -->
  79.        
  80. <div id="footer">
  81. <br>
  82.     <?php gpOutput::Get('Footer'); ?>
  83. <br>
  84.     <center><?php gpOutput::GetAdminLink(); ?></center>
  85. </div>
  86.  
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement