-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
25 lines (25 loc) · 876 Bytes
/
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
<!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js">
<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">
<?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php endif; ?>
<?php wp_head(); ?>
</head>
<body>
<div id="header-wrapper">
<div id="header" class="container">
<div class="header-image-container">
<img class="header-image" src="<?php header_image(); ?>"/>
<div class="header-text"><?= get_bloginfo('name'); ?></div>
</div>
<?php if ( has_nav_menu( 'primary' )): ?>
<?php create_bootstrap_menu('primary'); ?>
<?php endif; ?>
</div>
</div>
<div id="main" class="container">
<div id="content" class="site-content">