-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
executable file
·84 lines (70 loc) · 3.5 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/**
* The header for the countypages theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package countypages
*/
?><!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 wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'countypages' ); ?></a>
<?php
// Loads a clone of the finds.org.uk navbar
get_template_part('findsorguk', 'navbar');
?>
<!-- finds.org.uk HTML -->
<div class="container-fluid"><!-- tag closed in findsorguk-footer -->
<div class="row-fluid"><!-- tag closed in findsorguk-footer -->
<div class="span2"><!-- tag closed below -->
<!-- WordPress HTML -->
<header id="masthead" class="site-header" role="banner">
<div class="site-branding">
<a href="<?= get_base_url(); ?>" title="Go to the homepage"><img src="<?= get_base_url(); ?>/assets/logos/pas.jpg"
alt="The Scheme's logo"
width="213" height="104"/></a>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</div><!-- .site-branding -->
<div class="breadcrumbs" xmlns:v="http://rdf.data-vocabulary.org/#">
You are here:
<?php if(function_exists('bcn_display'))
{
bcn_display();
}?>
</div>
<!-- WordPress HTML -->
<nav id="site-navigation" class="main-navigation" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'primary',
'menu_id' => 'primary-menu',
'container_class' => 'sidebar-nav col-md-3', // finds.org.uk CSS
'menu_class' => 'menu nav nav-stacked nav-pills collapsible', // finds.org.uk CSS
'walker' => new CountyPages_Icons_Menu_Walker() // adds icons to menu items
) ); ?>
</nav><!-- #site-navigation -->
<?php
if( is_main_site() && is_front_page() ) { // Only display sponsor HLF logo on front page of main site
echo
'<div class="site-sponsorship">
<a href="https://www.heritagefund.org.uk" title="The Heritage Lottery Fund website"><img class="sponsors-hlf"
src="' . get_base_url() . '/assets/logos/HLF_english_compact_pantone_150px.jpg"
alt="The Heritage Lottery Fund logo"/></a>
</div><!-- .site-sponsorship -->';
}
?>
</header><!-- #masthead -->
<!-- finds.org.uk HTML -->
</div><!--/.span2-->
<div class="span9"><!-- tag closed in footer -->
<div class="row-fluid"><!-- tag closed in footer -->
<!-- WordPress HTML -->
<div id="content" class="site-content row-fluid">