-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
113 lines (64 loc) · 2.33 KB
/
Copy pathheader.php
File metadata and controls
113 lines (64 loc) · 2.33 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
<?php
defined( 'ABSPATH' ) || exit;
global $blog_id;
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php wp_title( ' | ', true, 'right' ); ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="dimmer-overlay"></div>
<nav class="skip" role="navigation">
<a class="show-on-focus" href="#main">Skip to main content</a>
</nav>
<header role="banner" id="masthead">
<!-- start .top-header -->
<div class="top-header">
<?php citadel_top_header_wordmark(); ?>
<div class="right-header flex-item flex-middle flex-right">
<nav class="secondary-nav flex-item flex-middle" role="navigation" aria-label="secondary navigation">
<?php get_template_part( 'template-parts/header/secondary-nav' ); ?>
</nav>
</div>
</div>
<?php get_template_part( 'template-parts/header/citadel-search' ); ?>
<?php get_template_part( 'template-parts/header/tools' ); ?>
</div><!-- end .top-header -->
<!-- start .main-header -->
<div class="main-header">
<div class="wrapper flex-container flex-between">
<div class="lockup flex-item">
<?php
if ( ( $blog_id == 1 ) ) :
citadel_lockup_logo();
else:
citadel_subsite_lockup();
endif;
?>
</div>
<div class="main-cta mobile-hide flex-item flex-middle">
<div class="flex-container text-right">
<a href="">Apply Now</a>
<a href="">Give Online</a>
</div>
</div>
</div>
</div><!-- end .main-header -->
<!-- start .main-nav -->
<nav class="main-nav" role="navigation" aria-label="main navigation">
<div class="wrapper">
<?php get_template_part( 'template-parts/header/main-nav' ); ?>
</div>
</nav><!-- end .main-nav -->
</header>
<?php get_template_part( 'template-parts/header/mobile-nav' ); ?>
<!-- start #main -->
<main id="main" role="main">