-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
55 lines (51 loc) · 2.36 KB
/
header.php
File metadata and controls
55 lines (51 loc) · 2.36 KB
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
<?php
/**
* Header Template
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package rk_90lat
*/
?>
<!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">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content">
<?php esc_html_e( 'Skip to content', 'rk90' ); ?>
</a>
<!-- ===== NAVIGATION AND BRANDING ===== -->
<header id="masthead" class="site-header" role="banner">
<div class="main-navigation-wrapper">
<div class="container">
<div class="site-branding">
<a class="site-logo" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<img alt="<?php bloginfo( 'name' ); ?>" src="<?php echo get_template_directory_uri() . '/assets/logo_90.svg' ?>">
</a>
<a class="site-logo" href="http://www.radio.katowice.pl/" rel="home" target="_blank">
<img alt="Radio Katowice" src="<?php echo get_template_directory_uri() . '/assets/logo_radio.svg' ?>">
</a>
</div>
<!-- .site-nav -->
<nav id="site-navigation" class="main-navigation small-12 medium-6" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'menu-1', 'menu_id' => 'primary-menu' ) ); ?>
</nav>
<!-- #site-navigation -->
</div>
</div>
<!-- .entry-header -->
<?php
$rk90_sub_meta = rk90_subtitle_get_meta( 'rk90_subtitle' );
if ( !empty( $rk90_sub_meta ) ) :
?>
<div class="page-title-wrapper container">
<?php rk90_page_title(); ?>
</div>
<?php endif; ?>
</header>
<!-- #masthead -->