2018-05-26 18:59:29 +08:00
< ? php
/**
* The header for our theme .
*
* This is the template that displays all of the < head > section and everything up until < div id = " content " >
*
* @ link https :// developer . wordpress . org / themes / basics / template - files / #template-partials
*
* @ package Akina
*/
?>
< ? php header ( 'X-Frame-Options: SAMEORIGIN' ); ?>
<! DOCTYPE html >
2018-08-03 11:17:19 +08:00
<!--
Theme by Mashiro
/^--^ \ /^--^ \ /^--^ \
\____ / \____ / \____ /
/ \ / \ / \
| | | | | |
\__ __ / \__ __ / \__ __ /
|^|^|^|^|^|^|^|^|^|^|^|^ \ \ ^|^|^|^/ /^|^|^|^|^ \ \ ^|^|^|^|^|^|^|^|^|^|^|^|
| | | | | | | | | | | | | \ \ | | |/ /| | | | | | \ \ | | | | | | | | | | |
########################/ /######\ \###########/ /#######################
| | | | | | | | | | | | \ /| | | | \ /| | | | | | \ / | | | | | | | | | | | |
| _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ | _ |
-->
2018-05-26 18:59:29 +08:00
< html < ? php language_attributes (); ?> >
< head >
< meta charset = " <?php bloginfo( 'charset' ); ?> " >
<!--< meta name = " viewport " content = " width=device-width, initial-scale=1 " >-->
< meta content = " width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0 " name = " viewport " >
< title itemprop = " name " >< ? php global $page , $paged ; wp_title ( '-' , true , 'right' );
bloginfo ( 'name' ); $site_description = get_bloginfo ( 'description' , 'display' );
2019-10-31 13:33:52 +08:00
if ( $site_description && ( is_home () || is_front_page () ) ) echo " - $site_description " ; if ( $paged >= 2 || $page >= 2 ) echo ' - ' . sprintf ( __ ( 'page %s ' , 'sakura' ), max ( $paged , $page ) ); /*第 %s 页*/ ?>
2018-05-26 18:59:29 +08:00
</ title >
< ? php
if ( akina_option ( 'akina_meta' ) == true ) {
$keywords = '' ;
$description = '' ;
if ( is_singular () ) {
$keywords = '' ;
$tags = get_the_tags ();
$categories = get_the_category ();
if ( $tags ) {
foreach ( $tags as $tag ) {
$keywords .= $tag -> name . ',' ;
};
};
if ( $categories ) {
foreach ( $categories as $category ) {
$keywords .= $category -> name . ',' ;
};
};
$description = mb_strimwidth ( str_replace ( " \r \n " , '' , strip_tags ( $post -> post_content )), 0 , 240 , '…' );
} else {
$keywords = akina_option ( 'akina_meta_keywords' );
$description = akina_option ( 'akina_meta_description' );
};
?>
< meta name = " description " content = " <?php echo $description ; ?> " />
< meta name = " keywords " content = " <?php echo $keywords ; ?> " />
< ? php } ?>
< link rel = " shortcut icon " href = " <?php echo akina_option('favicon_link', ''); ?> " />
< meta http - equiv = " x-dns-prefetch-control " content = " on " >
< ? php wp_head (); ?>
< script type = " text/javascript " >
if ( !! window . ActiveXObject || " ActiveXObject " in window ) { //is IE?
2019-08-25 18:42:27 +08:00
alert ( '朋友, IE浏览器未适配哦~\n如果是 360、QQ 等双核浏览器,请关闭 IE 模式!' );
2018-05-26 18:59:29 +08:00
}
</ script >
2019-01-02 11:09:15 +08:00
< ? php if ( akina_option ( 'google_analytics_id' , '' )) : ?>
2019-01-02 12:09:52 +08:00
<!-- Global site tag ( gtag . js ) - Google Analytics -->
2018-05-26 18:59:29 +08:00
< script async src = " https://www.googletagmanager.com/gtag/js?id=<?php echo akina_option('google_analytics_id', ''); ?> " ></ script >
2019-01-02 11:16:32 +08:00
< script >
2018-05-26 18:59:29 +08:00
window . dataLayer = window . dataLayer || []; function gtag (){ dataLayer . push ( arguments )} gtag ( 'js' , new Date ()); gtag ( 'config' , '<?php echo akina_option(' google_analytics_id ', ' '); ?>' );
</ script >
2019-01-02 12:09:52 +08:00
< ? php endif ; ?>
2018-05-26 18:59:29 +08:00
</ head >
2019-11-15 09:23:07 +08:00
< body < ? php body_class (); ?> >
2019-08-25 20:07:23 +08:00
< ? php if ( get_template_directory_uri () != get_site_url () . '/wp-content/themes/Sakura' ) echo '<div style="position:fixed;height:100%;width:100%;top:0;left:0;font-size:20px;z-index:999999;background-color: #fff;">Plz rename the theme folder name as <span style="color:red">Sakura</span>!<br>请将主题文件夹名改为 <span style="color:red">Sakura</span>! </div>' ; ?>
2019-11-14 20:11:45 +08:00
< div class = " scrollbar " id = " bar " ></ div >
2018-05-26 18:59:29 +08:00
< section id = " main-container " >
< ? php
if ( ! akina_option ( 'head_focus' )){
$filter = akina_option ( 'focus_img_filter' );
?>
< div class = " headertop <?php echo $filter ; ?> " >
< ? php get_template_part ( 'layouts/imgbox' ); ?>
</ div >
< ? php } ?>
< div id = " page " class = " site wrapper " >
< header class = " site-header no-select " role = " banner " >
< div class = " site-top " >
< div class = " site-branding " >
< ? php if ( akina_option ( 'akina_logo' )){ ?>
< div class = " site-title " >
< a href = " <?php bloginfo('url');?> " >< img src = " <?php echo akina_option('akina_logo'); ?> " ></ a >
</ div >
< ? php } else { ?>
< span class = " site-title " >
< span class = " logolink serif " >
< a href = " <?php bloginfo('url');?> " >
< span class = " site-name " >< ? php echo akina_option ( 'site_name' , '' ); ?> </span>
</ a >
</ span >
</ span >
< ? php } ?> <!-- logo end -->
</ div ><!-- . site - branding -->
< ? php header_user_menu (); if ( akina_option ( 'top_search' ) == 'yes' ) { ?>
< div class = " searchbox " >< i class = " iconfont js-toggle-search iconsearch icon-search " ></ i ></ div >
< ? php } ?>
< div class = " lower " >< ? php if ( ! akina_option ( 'shownav' )){ ?>
< div id = " show-nav " class = " showNav " >
< div class = " line line1 " ></ div >
< div class = " line line2 " ></ div >
< div class = " line line3 " ></ div >
</ div >< ? php } ?>
< nav >< ? php wp_nav_menu ( array ( 'depth' => 2 , 'theme_location' => 'primary' , 'container' => false ) ); ?> </nav><!-- #site-navigation -->
</ div >
</ div >
</ header ><!-- #masthead -->
2019-01-24 17:01:27 +08:00
< ? php if ( get_post_meta ( get_the_ID (), 'cover_type' , true ) == 'hls' ) {
the_video_headPattern_hls ();
} elseif ( get_post_meta ( get_the_ID (), 'cover_type' , true ) == 'normal' ) {
the_video_headPattern_normal ();
} else {
the_headPattern ();
} ?>
2019-08-25 18:42:27 +08:00
< div id = " content " class = " site-content " >