Advertisement
Guest User

Untitled

a guest
Jan 1st, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title><?php echo Site::name() . ' - ' . Site::title(); ?></title>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">      
  7.     <meta name="description" content="<?php echo Site::description(); ?>">
  8.     <meta name="keywords" content="<?php echo Site::keywords(); ?>">
  9.     <meta name="robots" content="<?php echo Page::robots(); ?>">
  10.    
  11.     <?php Stylesheet::add('public/themes/comedywoman/css/styles.css', 'frontend', 1); ?>
  12.     <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.js"></script>
  13.     <script type="text/javascript" src="<?php echo Option::get('siteurl'); ?>public/themes/comedywoman/js/tooltip.js"></script>  
  14.     <script type="text/javascript">  
  15.       $(function() {  
  16.         $('#menu ul a').tipsy({gravity: 's'});
  17.         $('#menu a.rss, #logo a').tipsy({gravity: 'w'});  
  18.       });  
  19.     </script>
  20.     <?php Stylesheet::load(); ?>
  21.  
  22.     <link rel="icon" href="<?php echo Site::url(); ?>favicon.ico" type="image/x-icon">
  23.     <link rel="shortcut icon" href="<?php echo Site::url(); ?>favicon.ico" type="image/x-icon">
  24.  
  25. </head>
  26. <body>
  27. <header>
  28.   <div class="wrap">
  29.     <div id="logo" class="left">
  30.       <a href="/" title="Камеди Вумен"></a>
  31.     </div>
  32.     <div id="menu" class="right">
  33.       <ul class="left">
  34.         <li>
  35.           <a href="/" title="Главная страница">
  36.             <span class="m_l"></span>
  37.             <span class="m_c">Главная</span>
  38.             <span class="m_r"></span>
  39.           </a>
  40.         </li>
  41.         <li>
  42.           <a href="/girl" title="Участницы Шоу">
  43.             <span class="m_l"></span>
  44.             <span class="m_c">Участницы</span>
  45.             <span class="m_r"></span>
  46.           </a>
  47.         </li>
  48.         <li>
  49.           <a href="/vipuski" title="Выпуски">
  50.             <span class="m_l"></span>
  51.             <span class="m_c">Выпуски</span>
  52.             <span class="m_r"></span>
  53.           </a>
  54.         </li>
  55.         <li>
  56.           <a href="/contact" title="Связь с администрацией">
  57.             <span class="m_l"></span>
  58.             <span class="m_c">Контакты</span>
  59.             <span class="m_r"></span>
  60.           </a>
  61.         </li>
  62.       </ul>
  63.       <a href="/rss.xml" title="Подпишись на новости!" class="rss right"></a>
  64.     </div>
  65.     <div class="clearfix"></div>
  66.   </div>
  67. </header>
  68.  
  69. <?php if (Site::title() == "О проекте") echo '<div id="slider"></div>'; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement