Advertisement
Guest User

head

a guest
Nov 27th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html class="no-js" <?php language_attributes(); ?>>
  3.  
  4. <head>
  5. <meta charset="<?php bloginfo('charset'); ?>">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.  
  8. <title><?php wp_title(''); ?></title>
  9.  
  10. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
  11.  
  12. <?php wp_head(); ?>
  13. </head>
  14.  
  15. <body <?php body_class(); ?>>
  16.  
  17. <div id="wrapper">
  18.  
  19. <header id="header">
  20.  
  21. <?php if (has_nav_menu('topbar')): ?>
  22.  
  23. <?php wp_nav_menu(array('theme_location'=>'topbar','menu_class'=>'nav container-inner group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?>
  24.  
  25.  
  26.  
  27. <?php endif; ?>
  28.  
  29.  
  30. <div class="container group">
  31. <div class="container-inner">
  32.  
  33. <div class="group pad">
  34. <?php echo alx_site_title(); ?>
  35. <?php if ( ot_get_option('site-description') != 'off' ): ?><p class="site-description"><?php bloginfo( 'description' ); ?></p><?php endif; ?>
  36. <div id="header_text"></div>
  37. </div>
  38. <div id="header_date"><h6><?php echo date('jS F Y'); ?>&nbsp|&nbsp<?php echo do_shortcode('[en_hijri_date]'); ?> </h6></div>
  39. <?php if (has_nav_menu('header')): ?>
  40. <?php wp_nav_menu(array('theme_location'=>'header','menu_class'=>'nav container-inner group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?>
  41. <?php endif; ?>
  42.  
  43.  
  44. </div><!--/.container-inner-->
  45. </div><!--/.container-->
  46.  
  47. </header><!--/#header-->
  48.  
  49. <div class="container" id="page">
  50. <div class="container-inner">
  51. <div class="main">
  52. <div class="main-inner group">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement