N3r0_H4x0r_EvilSec

HTML/php Found From:http://www.silvanstaehli.ch

Sep 25th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.37 KB | None | 0 0
  1. HTML/php Found From:http://www.silvanstaehli.ch
  2.  
  3. <?php
  4. // $Id: page.tpl.php,v 1.18 2010/12/02 11:42:42 danprobo Exp $
  5. ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  6. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
  8. <head>
  9. <?php print $head; ?>
  10. <title><?php print $head_title; ?></title>
  11. <meta http-equiv="Content-Style-Type" content="text/css" />
  12. <?php print $styles; ?>
  13. <!--[if IE 6]><link rel="stylesheet" href="<?php echo $base_path . $directory; ?>/style.ie6.css" type="text/css" /><![endif]-->
  14. <?php print $scripts; ?>
  15. <script type="text/javascript">
  16. jQuery(document).ready(function($) {
  17. $('.slideshow').cycle({
  18. fx: 'fade' , timeout: 8000, delay: 2000});
  19. });</script>
  20. <!--[if IE 6]>
  21. <script type="text/javascript" src="<?php print $base_path . $directory; ?>/scripts/jquery.pngFix.js"></script>
  22. <![endif]-->
  23. <!--[if IE 6]>
  24. <script type="text/javascript">
  25. jQuery(document).ready(function($) {
  26. $(document).pngFix();
  27. });
  28. </script>
  29. <![endif]-->
  30. <script type="text/javascript">
  31. jQuery(document).ready(function($) {
  32. $("#superfish ul.menu").superfish({
  33. delay: 100,
  34. animation: {opacity:'show',height:'show'},
  35. speed: 'fast',
  36. autoArrows: true,
  37. dropShadows: true
  38. });
  39. });
  40. </script>
  41. </head>
  42.  
  43. <body<?php print phptemplate_body_class($left, $right); ?>>
  44. <div id="header">
  45. <div id="header-wrapper">
  46. <div id="header-first">
  47. <?php if ($logo): ?>
  48. <div class="logo">
  49. <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>"/></a>
  50. </div>
  51. <?php endif; ?>
  52. </div><!-- /header-first -->
  53. <div id="header-middle">
  54. <?php if ($site_name) : ?><h2 class="logo-name"><a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></h2><?php endif; ?>
  55. <?php if ($site_slogan) : ?><div class='logo-text'><?php print $site_slogan; ?></div><?php endif; ?>
  56. </div><!-- /header-middle -->
  57. <div id="search-box">
  58. <?php print $search_box; ?>
  59. </div><!-- /search-box -->
  60.  
  61. <div id="authorize">
  62. <ul><?php global $user; if ($user->uid != 0) { print '<li class="first">' .t('Logged in as '). '<a href="' .url('user/'.$user->uid). '">' .$user->name. '</a></li>'; print '<li><a href="' .url('logout'). '">' .t('Logout'). '</a></li>'; } else { print '<li class="first"><a href="' .url('user'). '">' .t('Login'). '</a></li>'; print '<li><a href="' .url('user/register'). '">' .t('Register'). '</a></li>'; } ?></ul>
  63. <?php print $feed_icons; ?>
  64. </div>
  65.  
  66. </div><!-- /header-wrapper -->
  67.  
  68. </div> <!-- /header -->
  69. <div style="clear:both"></div>
  70. <div id="menu">
  71. <div id="rounded-menu-left"></div>
  72. <?php if ($primary_links || $superfish_menu): ?>
  73. <!-- PRIMARY -->
  74. <div id="<?php print $primary_links ? 'nav' : 'superfish' ; ?>">
  75. <?php
  76. if ($primary_links) {
  77. print theme('links', $primary_links);
  78. }
  79. elseif (!empty($superfish_menu)) {
  80. print $superfish_menu;
  81. }
  82. ?>
  83. </div> <!-- /primary -->
  84. <?php endif; ?>
  85. <div id="rounded-menu-right"></div>
  86. </div> <!-- end menu -->
  87. <div id="slideshow-wrapper">
  88. <div class="slideshow-inner">
  89. <div id="slideshow-preface">
  90. <?php if ($preface): ?>
  91. <div id="preface">
  92. <?php print $preface; ?>
  93. </div><!-- /preface -->
  94. <?php endif; ?>
  95. </div>
  96. <?php if ($mission) : ?><div id="slideshow-bottom">
  97. <div id="mission"><?php print $mission; ?></div></div><?php endif; ?>
  98. <div class="slideshow">
  99. <img src="<?php print $base_path . $directory; ?>/images/slideshows/sea.jpg" width="950" height="355" alt="slideshow 1"/>
  100. </div>
  101. </div>
  102. </div>
  103.  
  104. <?php if($preface_first || $preface_middle || $preface_last) : ?>
  105. <div style="clear:both"></div>
  106. <div id="preface-wrapper" class="in<?php print (bool) $preface_first + (bool) $preface_middle + (bool) $preface_last; ?>">
  107. <?php if($preface_first) : ?>
  108. <div class="column A">
  109. <?php print $preface_first; ?>
  110. </div>
  111. <?php endif; ?>
  112. <?php if($preface_middle) : ?>
  113. <div class="column B">
  114. <?php print $preface_middle; ?>
  115. </div>
  116. <?php endif; ?>
  117. <?php if($preface_last) : ?>
  118. <div class="column C">
  119. <?php print $preface_last; ?>
  120. </div>
  121. <?php endif; ?>
  122. <div style="clear:both"></div>
  123. </div>
  124. <?php endif; ?>
  125.  
  126. <div style="clear:both"></div>
  127. <div id="wrapper">
  128. <?php if ($left): ?>
  129. <div id="sidebar-left" class="sidebar">
  130. <?php print $left ?>
  131. </div>
  132. <?php endif; ?>
  133. <div id="content">
  134. <?php if ($content_top) : ?><div class="content-top"><?php print $content_top; ?></div>
  135. <?php endif; ?>
  136. <?php if (!$is_front) print $breadcrumb; ?>
  137. <?php if ($show_messages) { print $messages; }; ?>
  138. <?php if ($tabs) : ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
  139. <?php if ($title) : ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
  140. <?php print $help; ?>
  141. <?php if ($content) : ?><div class="content-middle"><?php print $content; ?></div>
  142. <?php endif; ?>
  143. <?php if ($content_bottom) : ?><div class="content-bottom"><?php print $content_bottom; ?></div>
  144. <?php endif; ?>
  145.  
  146. </div> <!-- end content -->
  147.  
  148. <?php if ($right): ?>
  149. <div id="sidebar-right" class="sidebar">
  150. <?php print $right; ?>
  151. </div>
  152. <?php endif; ?>
  153. <div style="clear:both"></div>
  154. </div> <!-- end wrapper -->
  155.  
  156. <?php if($bottom_first || $bottom_middle || $bottom_last) : ?>
  157. <div style="clear:both"></div>
  158. <div id="bottom-teaser" class="in<?php print (bool) $bottom_first + (bool) $bottom_middle + (bool) $bottom_last; ?>">
  159. <?php if($bottom_first) : ?>
  160. <div class="column A">
  161. <?php print $bottom_first; ?>
  162. </div>
  163. <?php endif; ?>
  164. <?php if($bottom_middle) : ?>
  165. <div class="column B">
  166. <?php print $bottom_middle; ?>
  167. </div>
  168. <?php endif; ?>
  169. <?php if($bottom_last) : ?>
  170. <div class="column C">
  171. <?php print $bottom_last; ?>
  172. </div>
  173. <?php endif; ?>
  174. <div style="clear:both"></div>
  175. </div>
  176. <?php endif; ?>
  177.  
  178. <?php if($bottom_1 || $bottom_2 || $bottom_3 || $bottom_4) : ?>
  179. <div style="clear:both"></div><!-- Do not touch -->
  180. <div id="bottom-wrapper" class="in<?php print (bool) $bottom_1 + (bool) $bottom_2 + (bool) $bottom_3 + (bool) $bottom_4; ?>">
  181. <?php if($bottom_1) : ?>
  182. <div class="column A">
  183. <?php print $bottom_1; ?>
  184. </div>
  185. <?php endif; ?>
  186. <?php if($bottom_2) : ?>
  187. <div class="column B">
  188. <?php print $bottom_2; ?>
  189. </div>
  190. <?php endif; ?>
  191. <?php if($bottom_3) : ?>
  192. <div class="column C">
  193. <?php print $bottom_3; ?>
  194. </div>
  195. <?php endif; ?>
  196. <?php if($bottom_4) : ?>
  197. <div class="column D">
  198. <?php print $bottom_4; ?>
  199. </div>
  200. <?php endif; ?>
  201. <div style="clear:both"></div>
  202. </div><!-- Bottom -->
  203. <?php endif; ?>
  204.  
  205. <div style="clear:both"></div>
  206. <div id="footer-wrapper">
  207. <div id="footer">
  208. <?php print $footer; ?>
  209. </div>
  210. <?php if($footer_message || $secondary_links) : ?>
  211. <div id="subnav-wrapper">
  212. <ul><li><?php print $footer_message; ?></li>
  213. <li><?php if (isset($secondary_links)) : ?><?php print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnav')); ?><?php endif; ?></li></ul>
  214. </div>
  215. <?php endif; ?>
  216. </div> <!-- end footer wrapper -->
  217.  
  218. <div style="clear:both"></div>
  219. <div id="notice"><p>Theme by <a href="http://www.danetsoft.com">Danetsoft</a> and <a href="http://www.danpros.com">Danang Probo Sayekti</a> inspired by <a href="http://www.maksimer.no">Maksimer</a></p></div>
  220. <?php print $closure; ?>
  221. </body>
  222. </html>
Add Comment
Please, Sign In to add comment