This repository was archived by the owner on Nov 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
115 lines (103 loc) · 4.19 KB
/
header.php
File metadata and controls
115 lines (103 loc) · 4.19 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php wp_title('|', true, 'right'); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri() ?>/assets/js/html5shiv.js"></script>
<script src="<?php echo get_template_directory_uri() ?>/assets/js/respond.min.js"></script>
<![endif]-->
<?php zee_favicon();?>
<?php wp_head(); ?>
</head><!--/head-->
<body <?php body_class() ?>>
<?php if (zee_option('zee_theme_layout')=='boxed') { ?>
<div id="boxed">
<?php } ?>
<header class="masthead">
<div class="container">
<div class="row">
<div class="col-sm-5">
<a class="navbar-brand" href="<?php echo esc_url(home_url('/')); ?>" >
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_imar.png" alt="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" />
</a>
</div>
<div class="col-sm-7">
<div class="pull-right hidden-xs">
<a class="navbar-brand" href="https://www.mtu.ie/" target="_blank" >
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/funders.png" alt="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" />
</a>
</div>
</div>
</div>
</div>
</header>
<header id="header" class="navbar navbar-inverse xnavbar-fixed-top navbar-static" role="banner">
<div class="container">
<div class="navbar-header">
<div id="navbar-brand-small" class="pull-left hidden">
<a class="" href="<?php echo esc_url(home_url('/')); ?>" >
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_imar_small.png" alt="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" height="75"/>
</a>
</div>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only"><?php _e('Toggle navigation', ZEETEXTDOMAIN); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<?php //logo();?>
<!--
<a class="navbar-brand" href="<?php echo esc_url(home_url('/')); ?>" >
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_imar.png" alt="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" />
</a>-->
</div>
<!--
<a class="navbar-brand pull-right gateway" target="_blank" href="http://www.technologygateway.ie/" >
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/tech_gateway.png" alt="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" />
</a>-->
<div class="hidden-xs">
<?php
if (has_nav_menu('primary')) {
wp_nav_menu(
array(
'theme_location' => 'primary',
'container' => false,
'menu_class' => 'nav navbar-nav navbar-main',
'fallback_cb' => 'wp_page_menu',
'walker' => new wp_bootstrap_navwalker()
)
);
}
?>
</div>
<div id="mobile-menu" class="visible-xs">
<div class="collapse navbar-collapse">
<?php
if (has_nav_menu('primary')) {
wp_nav_menu(
array(
'theme_location' => 'primary',
'container' => false,
'menu_class' => 'nav navbar-nav',
'fallback_cb' => 'wp_page_menu',
'walker' => new wp_bootstrap_mobile_navwalker()
)
);
}
?>
</div>
</div><!--/.visible-xs-->
</div>
</header><!--/#header-->
<?php get_template_part('sub', 'title'); ?>
<?php if (! is_page()) { ?>
<section id="main">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div id="primary" class="content-area">
<?php } ?>