This repository was archived by the owner on May 11, 2023. It is now read-only.
forked from simgia/infocongo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathheader.php
132 lines (119 loc) · 4.36 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="UTF-8">
<title><?php
global $page, $paged;
wp_title( '|', true, 'right' );
bloginfo( 'name' );
$site_description = get_bloginfo('description', 'display');
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . __('Page', 'infoamazonia') . max($paged, $page);
?></title>
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" />
<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_stylesheet_directory_uri(); ?>/css/icons.css" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php // by mohjak: fixed openearth#215 ico files in themes ?>
<?php wp_head(); ?>
<script src="<?php bloginfo('stylesheet_directory'); ?>/js/sss.min.js"></script>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/sss.css" type="text/css" media="all">
<script>
jQuery(function($) {
$('.slider').sss();
});
</script>
<script>
jQuery(document).ready(function($) {
var $et_top_menu = $( '#top-search' ),
$search_icon = $( '.icon_search' );
$search_icon.click( function() {
var $this_el = $(this),
$form = $this_el.siblings( '.search-form' );
if ( $form.hasClass( 'hidden' ) ) {
$form.css( { 'display' : 'block', 'opacity' : 0 } ).animate( { opacity : 1 }, 500 );
} else {
$form.animate( { opacity : 0 }, 500 );
}
$form.toggleClass( 'hidden' );
});
});
</script>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/css/responsive.css" type="text/css" media="all">
<script>
$(document).ready(function(){
$("#main-header .menu_responsive .btn_responsive").click(function() {
$("#main-nav").slideToggle();
});
});
// jQuery(document).ready(function($) {
// $("#main-header .menu_responsive .btn_responsive").click(function() {
// // Hide why slideToggle in responsive. Cannot work.
// //$("#main-nav").slideToggle();
// });
// });
</script>
</head>
<body <?php body_class(); ?>>
<div id="site-wrapper">
<header id="main-header">
<div class="container">
<div class="row">
<div class="three columns">
<span class="site-logo">
<a href="<?php echo home_url('/' . $lang); ?>" title="<?php echo bloginfo('name'); ?>">
<?php if(is_home()) { ?>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/img/logo-mini.png" class="logo-mini" />
<?php } else { ?>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/img/logo-full.png" class="logo-full" />
<?php } ?>
</a>
</span>
</div>
<div class="menu_responsive">
<a href="javascript:void(0);" class="btn_responsive"><span class="icon_menu-square_alt2"></span></a>
</div>
<div class="nine columns">
<div class="tools u-pull-right">
<div id="top-search">
<span class="icon_search"></span>
<form role="search" method="get" class="search-form hidden" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<?php
printf( '<input type="search" class="search-field" placeholder="%1$s" value="%2$s" name="s" title="%3$s" />',
esc_attr_x( 'Search …', 'placeholder', '' ),
get_search_query(),
esc_attr_x( 'Search for:', 'label', '' )
);
?>
</form>
</div>
<div class="social-icons">
<a href="http://facebook.com/InfoCongo.org">
<span class="social_facebook_square"></span>
</a>
<a href="http://twitter.com/Info_Congo">
<span class="social_twitter_square"></span>
</a>
</div>
<div class="languages">
<span><a href="?lang=en">en</a></span>
<span>|</span>
<span><a href="?lang=fr">fr</a></span>
</div>
</div>
<div id="main-nav">
<nav>
<?php wp_nav_menu( array( 'theme_location' => 'header_menu' ) ); ?>
</nav>
</div>
</div>
</div>
</div>
</header>
<div id="content" class="site-content">