-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtop.php
More file actions
29 lines (29 loc) · 700 Bytes
/
Copy pathtop.php
File metadata and controls
29 lines (29 loc) · 700 Bytes
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
<?php
/**
* Top
*
* Displays the top section, which includes the site logo and the top
* navigation menu.
*
* @package WordPress
* @subpackage Twenty_Em
* @since Twenty Em 0.1.0
*/
?>
<div id="top" class="layer">
<div class="wrapper">
<div class="row row-1">
<div class="col section-1">
<div id="logo">
<a href="/"><b><?php bloginfo( 'name' ); ?></b><span id="logo-img"></span></a>
</div><!-- #logo -->
</div>
<div class="col section-2">
<div id="nav">
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
</div><!-- #nav -->
</div>
<div class="clear"></div>
</div>
</div>
</div><!-- #top -->