This repository has been archived by the owner on May 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
61 lines (50 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BuddyStrap</title>
<link rel="stylesheet" type="text/css" href="<?php echo get_bloginfo('stylesheet_url'); ?>">
<?php
wp_enqueue_script("jquery");
//call Wordpress' header action hook
wp_head();
?>
</head>
<body>
<!-- top bar - displays personal menu -->
<!--
<div class="topbar">
<div class="fill">
<div class="container">
<a class="brand" href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<?php //do_action( 'bp_adminbar_menus' ); ?>
</ul>
</div>
</div>
</div>
-->
<!-- /topbar -->
<!-- container - wraps content to align in center of page
also provides grid structure -->
<div class="container">
<!-- Hero unit, displayed at top of page -->
<div class="hero-unit">
<h1><?php bloginfo('name'); ?></h1>
<p><?php bloginfo('description'); ?></p>
</div> <!-- /herounit -->
<div class="row">
<div class="span16">
<?php wp_nav_menu( array(
'container' => false,
'menu_class' => 'pills pull-right',
'fallback_cb' => 'buddystrap_theme_main_nav',
//'items_wrap' => '<ul id="%1$s" class="%2$s pills">%3$s</ul>',
'theme_location' => 'primary'
) ); ?>
</div>
</div>
<!-- container div closed in footer.php -->