forked from html5blank/html5blank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
70 lines (55 loc) · 2.26 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
<!DOCTYPE html>
<!--[if lt IE 7]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html <?php language_attributes(); ?> class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--><html <?php language_attributes(); ?> class="no-js"><!--<![endif]-->
<head>
<meta charset="UTF-8">
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<!-- Meta -->
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0;">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="description" content="<?php bloginfo('description'); ?>">
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/favicon.ico">
<!-- CSS + jQuery + JavaScript -->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="wrapper">
<header>
<div class="container">
<div id="primary-log" class="widget-area" role="complementary">
<ul class="xoxo">
<?php if ( is_user_logged_in() ) { ?>
<li id="logout" class="widget-container">
Welcome <?php echo S2MEMBER_CURRENT_USER_DISPLAY_NAME; ?> |
<a href="<?php echo S2MEMBER_LOGIN_WELCOME_PAGE_URL; ?>" title="My account">My account</a> |
<a href="<?php echo wp_logout_url( get_bloginfo('url') ); ?>" title="Log out">Log Out</a>
</li>
<?php } else{ ?>
<li id="login" class="widget-container">
<a href="<?php echo S2MEMBER_LOGIN_PAGE_URL; //wp_loginout('/welcome-page'); ?>">Member Log in</a>
</li>
<?php } ?>
</ul>
</div>
<!-- Logo -->
<div id="logo">
<a href="<?php echo home_url(); ?>">
<img src="<?php echo get_template_directory_uri(); ?>/img/logo.png" alt="Logo">
</a>
</div>
<!-- /Logo -->
<!-- Nav -->
<nav>
<?php html5blank_nav(); ?>
</nav>
<!-- /Nav -->
<br class="clear">
</div>
<!-- /container -->
</header>
<!-- /Header -->
<!-- Wrapper -->
<div id="" class="container">