-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
55 lines (51 loc) · 2.55 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
<!doctype html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<link href="//www.google-analytics.com" rel="dns-prefetch">
<link href="<?php echo get_template_directory_uri(); ?>/assets/images/icons/favicon.ico" rel="shortcut icon">
<link href="<?php echo get_template_directory_uri(); ?>/assets/images/icons/touch.png" rel="apple-touch-icon-precomposed">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="description" content="<?php bloginfo('description'); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="header has-transition" role="banner">
<div class="container">
<nav class="nav nav-primary" role="navigation">
<div class="nav-left">
<a class="nav-item logo" href="<?php echo home_url(); ?>">University of Illinois Law Review</a>
<?php lawreview_nav(); ?>
</div>
<div class="is-flex is-hidden-mobile">
<a href="http://eepurl.com/cIXVsj" target="_blank" class="nav-item is-icon" rel="nofollow noopener noreferrer">
<span class="icon">
<i class="fa fa-envelope"></i>
</span>
</a>
<a href="https://twitter.com/UIllLRev" target="_blank" class="nav-item is-icon" rel="nofollow noopener noreferrer">
<span class="icon">
<i class="fa fa-twitter"></i>
</span>
</a>
<a href="https://www.facebook.com/IllinoisLawReview" target="_blank" class="nav-item is-icon" rel="nofollow noopener noreferrer">
<span class="icon">
<i class="fa fa-facebook"></i>
</span>
</a>
<a href="/feed/" target="_blank" class="nav-item is-icon">
<span class="icon">
<i class="fa fa-rss"></i>
</span>
</a>
</div>
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
</span>
</nav>
</div>
</header>