forked from Codeinwp/oria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
70 lines (58 loc) · 2.34 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
/**
* The header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package Oria
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php if ( get_theme_mod('site_favicon') ) : ?>
<link rel="shortcut icon" href="<?php echo esc_url(get_theme_mod('site_favicon')); ?>" />
<?php endif; ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="preloader">
<div id="preloader-inner">
<div class="preload"></div>
</div>
</div>
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'oria' ); ?></a>
<header id="masthead" class="site-header" role="banner">
<div class="top-bar clearfix <?php oria_sidebar_mode(); ?>">
<?php if ( has_nav_menu( 'social' ) ) : ?>
<nav class="social-navigation clearfix">
<?php wp_nav_menu( array( 'theme_location' => 'social', 'link_before' => '<span class="screen-reader-text">', 'link_after' => '</span>', 'menu_class' => 'menu clearfix', 'fallback_cb' => false ) ); ?>
</nav>
<?php endif; ?>
<?php if ( is_active_sidebar( 'sidebar-1' ) && !is_singular() ) : ?>
<div class="sidebar-toggle">
<i class="fa fa-plus"></i>
</div>
<?php endif; ?>
</div>
<div class="container">
<div class="site-branding">
<?php oria_branding(); ?>
</div><!-- .site-branding -->
</div>
<nav id="site-navigation" class="main-navigation" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu', 'menu_class' => 'menu clearfix', ) ); ?>
</nav><!-- #site-navigation -->
<nav class="mobile-nav"></nav>
</header><!-- #masthead -->
<?php if ( ( get_theme_mod('carousel_display_front') && is_front_page() ) || ( get_theme_mod('carousel_display_archives', '1') && ( is_home() || is_archive() ) ) || ( ( get_theme_mod('carousel_display_singular') && is_singular() ) ) ) : ?>
<?php oria_slider_template(); ?>
<?php endif; ?>
<div id="content" class="site-content clearfix">
<?php if ( is_singular() ) : ?>
<div class="container content-wrapper">
<?php endif; ?>