-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·88 lines (81 loc) · 3.78 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
<?php
/**
*
* Default Page Header
*
* @package WP-Bootstrap
* @subpackage Default_Theme
* @since WP-Bootstrap 0.1
*
* Last Revised: August 15, 2012
*/ ?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'bootstrapwp' ), max( $paged, $page ) );
?></title>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="<?php bloginfo( 'template_url' );?>/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="<?php bloginfo( 'template_url' );?>/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="<?php bloginfo( 'template_url' );?>/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="<?php bloginfo( 'template_url' );?>/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="<?php bloginfo( 'template_url' );?>/ico/apple-touch-icon-57-precomposed.png">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> data-spy="scroll" data-target=".bs-docs-sidebar" data-offset="10">
<div class="navbar navbar-inverse navbar-relative-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<?php
/** Loading WordPress Custom Menu **/
wp_nav_menu( array(
'menu' => 'main-menu',
'container_class' => 'nav-collapse',
'menu_class' => 'nav',
'fallback_cb' => '',
'menu_id' => 'main-menu',
'walker' => new Bootstrapwp_Walker_Nav_Menu()
) ); ?>
<div class="pull-right">
<a href="http://www.google.com"><img src="<?php bloginfo( 'template_url' );?>/img/some/16/facebook.png" title="Facebook" class="some" /></a>
<a href="http://www.google.com"><img src="<?php bloginfo( 'template_url' );?>/img/some/16/facebook.png" title="Pickawall" class="some" /></a>
<a href="http://www.google.com"><img src="<?php bloginfo( 'template_url' );?>/img/some/16/twitter.png" title="twitter" class="some" /></a>
<a href="http://www.google.com"><img src="<?php bloginfo( 'template_url' );?>/img/some/16/linkedin.png" title="linkedin" class="some" /></a>
<a href="http://www.google.com"><img src="<?php bloginfo( 'template_url' );?>/img/some/16/google.png" title="google" class="some" /></a>
</div>
</div>
</div>
</div>
</div>
<!--The big bad ass text-->
<div class="jumbotron masthead">
<h1>HKC Media</h1>
</div>
<!-- End Header -->
<!-- Begin Template Content -->