1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=10,IE=9,IE=8">
- <meta name="theme-color" content="#1e90ff">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
- <title><?php wp_title('|', true, 'right'); echo get_option('blogname'); if (is_home ()) echo " | ".get_option('blogdescription'); if ($paged > 1) echo '-Page ', $paged; ?></title>
- <?php
- $sr_1 = 0; $sr_2 = 0; $commenton = 0;
- if( dopt('d_sideroll_b') ){
- $sr_1 = dopt('d_sideroll_1');
- $sr_2 = dopt('d_sideroll_2');
- }
- if( is_singular() ){
- if( comments_open() ) $commenton = 1;
- }
- ?>
- <script>
- window._deel = {name: '<?php bloginfo('name') ?>',url: '<?php echo get_bloginfo("template_url") ?>', ajaxpager: '<?php echo dopt('d_ajaxpager_b') ?>', commenton: <?php echo $commenton ?>, roll: [<?php echo $sr_1 ?>,<?php echo $sr_2 ?>]}
- </script>
- <?php
- //49分类不被搜索引擎收录
- if (!is_home() && in_category('49') ){
- echo '<meta name="robots" content="noindex,nofollow" />';
- }
- ?>
- <?php
- wp_head();
- if( dopt('d_headcode_b') ) echo dopt('d_headcode'); ?>
- <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" />
- <!--[if lt IE 9]><script src="<?php bloginfo('template_url'); ?>/js/html5.js"></script><![endif]-->
- </head>
- <body <?php body_class(); ?>>
- <header id="header" class="header">
- <div class="container-inner">
- <div class="yusi-logo">
- <a href="/">
- <h1>
- <span class="yusi-mono"><?php bloginfo('name'); ?></span>
- <span class="yusi-bloger"><?php bloginfo('description'); ?></span>
- </h1>
- </a>
- </div>
- </div>
- <div id="nav-header" class="navbar">
-
- <ul class="nav">
- <?php echo str_replace("</ul></div>", "", ereg_replace("<div[^>]*><ul[^>]*>", "", wp_nav_menu(array('theme_location' => 'nav', 'echo' => false)) )); ?>
- <li style="float:right;">
- <div class="toggle-search"><i class="fa fa-search"></i></div>
- <div class="search-expand" style="display: none;"><div class="search-expand-inner"><form method="get" class="searchform themeform" onsubmit="location.href='<?php echo home_url('/search/'); ?>' + encodeURIComponent(this.s.value).replace(/%20/g, '+'); return false;" action="/"><div> <input type="ext" class="search" name="s" onblur="if(this.value=='')this.value='search...';" onfocus="if(this.value=='search...')this.value='';" value="search..."></div></form></div></div>
- </li>
- </ul>
- </div>
- </div>
- </header>
- <section class="container"><div class="speedbar">
- <?php
- if( dopt('d_sign_b') ){
- global $current_user;
- get_currentuserinfo();
- $uid = $current_user->ID;
- $u_name = get_user_meta($uid,'nickname',true);
- ?>
- <div class="pull-right">
- <?php if(is_user_logged_in()){echo '<i class="fa fa-user"></i> '.$u_name.' '; echo ' <i class="fa fa-power-off"></i> ';}else{echo '<i class="fa fa-user"></i> ';}; wp_loginout(); ?>
- </div>
- <?php } ?>
- <div class="toptip"><strong class="text-success"><i class="fa fa-volume-up"></i> </strong> <?php echo dopt('d_tui'); ?></div>
- </div>
- <?php if( dopt('d_adsite_01_b') ) echo '<div class="banner banner-site">'.dopt('d_adsite_01').'</div>'; ?>
|