mirror of
https://ghproxy.net/https://github.com/AlxMedia/splits.git
synced 2025-08-26 06:20:51 +08:00
Initial commit
This commit is contained in:
commit
9f13aa6240
389 changed files with 84369 additions and 0 deletions
87
header.php
Normal file
87
header.php
Normal file
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="no-js" <?php language_attributes(); ?>>
|
||||
|
||||
<head>
|
||||
<meta charset="<?php bloginfo('charset'); ?>">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11">
|
||||
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
|
||||
|
||||
<?php wp_head(); ?>
|
||||
</head>
|
||||
|
||||
<body <?php body_class(); ?>>
|
||||
|
||||
<?php if ( function_exists( 'wp_body_open' ) ) { wp_body_open(); } ?>
|
||||
|
||||
<a class="skip-link screen-reader-text" href="#split"><?php _e( 'Skip to content', 'split' ); ?></a>
|
||||
|
||||
<div id="wrapper">
|
||||
|
||||
<?php if ( get_theme_mod('header-ads','off') == 'on' ): ?>
|
||||
<div id="header-ads">
|
||||
<?php dynamic_sidebar( 'header-ads' ); ?>
|
||||
</div><!--/#header-ads-->
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( has_nav_menu('mobile') ): ?>
|
||||
<nav class="nav-container group" id="nav-mobile">
|
||||
<div class="nav-toggle"><i class="fas fa-bars"></i></div>
|
||||
<div class="nav-text"><!-- put your mobile menu text here --></div>
|
||||
<div class="nav-wrap container"><?php wp_nav_menu(array('theme_location'=>'mobile','menu_class'=>'nav container-inner group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?></div>
|
||||
</nav><!--/#nav-mobile-->
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( has_nav_menu('topbar') ): ?>
|
||||
<nav class="nav-container group" id="nav-topbar">
|
||||
<div class="nav-toggle"><i class="fas fa-bars"></i></div>
|
||||
<div class="nav-text"><!-- put your mobile menu text here --></div>
|
||||
<div class="nav-wrap container"><?php wp_nav_menu(array('theme_location'=>'topbar','menu_class'=>'nav container-inner group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?></div>
|
||||
</nav><!--/#nav-topbar-->
|
||||
<?php endif; ?>
|
||||
|
||||
<header id="header" class="group">
|
||||
|
||||
<?php if ( get_theme_mod( 'header-search', 'on' ) == 'on' ): ?>
|
||||
<div class="container group">
|
||||
<div class="group pad">
|
||||
<div class="toggle-search"><i class="fas fa-search"></i></div>
|
||||
<div class="search-expand">
|
||||
<div class="search-expand-inner">
|
||||
<?php get_search_form(); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div><!--/.pad-->
|
||||
</div><!--/.container-->
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="container group">
|
||||
<div class="group pad">
|
||||
<?php echo split_site_title(); ?>
|
||||
<?php if ( display_header_text() == true ): ?>
|
||||
<p class="site-description"><?php bloginfo( 'description' ); ?></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( has_nav_menu('header') ): ?>
|
||||
<nav class="nav-container group" id="nav-header">
|
||||
<div class="nav-toggle"><i class="fas fa-bars"></i></div>
|
||||
<div class="nav-text"><!-- put your mobile menu text here --></div>
|
||||
<div class="nav-wrap container"><?php wp_nav_menu(array('theme_location'=>'header','menu_class'=>'nav group','container'=>'','menu_id' => '','fallback_cb'=> false)); ?></div>
|
||||
</nav><!--/#nav-header-->
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!--/.pad-->
|
||||
|
||||
<?php if ( get_header_image() ) : ?>
|
||||
<div class="site-header">
|
||||
<a href="<?php echo esc_url( home_url('/') ); ?>" rel="home">
|
||||
<img class="site-image" src="<?php header_image(); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
|
||||
</a>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!--/.container-->
|
||||
|
||||
</header><!--/#header-->
|
||||
|
||||
<div id="split" class="container group">
|
Loading…
Add table
Add a link
Reference in a new issue