-
Notifications
You must be signed in to change notification settings - Fork 0
/
navigation.strip.php
28 lines (25 loc) · 1.06 KB
/
navigation.strip.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
<?php
/**
* @package WordPress
* @subpackage Grid_Focus
*/
?>
<div class="navStripWrapper">
<ul class="nav fix">
<li><a href="<?php echo get_settings('home'); ?>/" title="Return to the the frontpage">Frontpage<br /><span>Return home</span></a></li>
<li><a id="triggerCatID" href="#" title="Show categories">Browse<br /><span>By topic</span></a></li>
<li class="last"><a href="<?php bloginfo('rss2_url'); ?>" title="Subscribe to the main feed via RSS">Subscribe<br /><span>RSS feed</span></a></li>
<li id="searchBar1" class="searchField">
<div>
<form method="get" id="searchForm1" action="<?php bloginfo('home'); ?>/">
<span><input type="text" value="Search the archives..." onfocus="if (this.value == 'Search the archives...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search the archives...';}" name="s" id="s1" /></span>
</form>
</div>
</li>
</ul>
<div id="headerStrip" class="toggleCategories fix" style="display: none;">
<ul class="fix">
<?php wp_list_cats('sort_column=name&optioncount=0'); ?>
</ul>
</div>
</div>