Advertisement
thachpham92

Untitled

May 15th, 2013
856
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html <?php language_attributes(); ?>>
  3. <head>
  4. <meta charset="<?php bloginfo('charset'); ?>" />
  5. <title>
  6.  <?php wp_title('|',true,'right'); ?>
  7.  <?php bloginfo('name'); ?>
  8.  </title>
  9. <link rel="profile" href="http://gmpg.org/xgn/11" />
  10. <!--Chèn CSS và JS cần thiết vào theme-->
  11. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>">
  12. <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory');?>/style/960.css" />
  13. <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory');?>/style/text.css" />
  14. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
  15. <!--Kích hoạt comment đa tầng - bắt buộc-->
  16. <?php
  17.     /*
  18.     Enabled threaded comment
  19.      */
  20.     if (is_singular() && get_option( 'thread_comment' ))
  21.         wp_enqueue_script( 'comment_reply' );
  22.     wp_head();
  23. ?>
  24. </head>
  25. <body>
  26. <div id="wrapper-wrapper" class="container_12">
  27.     <div id="header" class="grid_4">
  28.         <h1><a href="<?php echo get_option('home');?>"><?php bloginfo('name'); ?></a></h1>
  29.     </div>
  30.     <div id="top-menu" class="grid_8">
  31.         <?php wp_nav_menu( array(
  32.             'theme_location'  => 'top-menu') );
  33.         ?>
  34.     </div>
  35. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement