-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
64 lines (61 loc) · 3.07 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
<?php
/**
* @package VLRFC
* @subpackage
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<link rel="icon" href="<?php bloginfo('stylesheet_directory'); ?>/favicon.ico" type="image/x-icon" />
<link rel="SHORTCUT ICON" href="<?php bloginfo('stylesheet_directory'); ?>/favicon.ico" type="image/x-icon" />
<title><?php bloginfo('name'); ?> | 4 Leaf Fifteens <?php wp_title(' - ', true, 'left'); ?> </title>
<link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
<link href="<?php bloginfo('stylesheet_directory'); ?>/css/global_reset.css" rel="stylesheet" type="text/css" media="screen" />
<link href="<?php bloginfo('stylesheet_directory'); ?>/style.css" rel="stylesheet" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_enqueue_script('jquery'); ?>
<?php wp_head(); ?>
<script type="text/javascript">
(function($){
$(document).ready(function(){
$("#nav_main ul > li > ul").hide();
$("#nav_main ul > li:last-child a").addClass('last_link');
$("#nav_main ul > li > ul > li:last-child a").addClass('last_link_bottom');
$("#nav_main li").hover(
function(e){
$(this).find(":nth-child(2)").fadeIn('fast');
return false;
},
function(e){
$(this).find(":nth-child(2)").fadeOut('fast');
}
);
});
})(jQuery);
</script>
<!--[if IE]>
<style type="text/css">
#content_main{width:65%}
#sidebar{width:24.9%}
</style>
<![endif]-->
</head>
<body>
<div id="container">
<div id="back-link">
<h1 class="back round-top-left round-top-right" >
<a href="http://www.villagelions.org" title='Back to Village Lions RFC Home Page'>Back to Village Lions RFC Home Page</a>
</h1>
</div>
<div>
<?php dynamic_sidebar('Premium Tournament Sponsors'); ?>
</div>
<div id="header" >
<img name="header_only" src="<?php bloginfo('stylesheet_directory'); ?>/images/banner.jpg" alt="Village Lions New York CIty Hellgate Sevens" />
</div> <!-- end of div#header -->
<?php wp_nav_menu( array( 'menu' => 'Tournament Nav', 'container_id' =>'nav_main' ) ); ?>
<?php