forked from wearerequired/required-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchform.php
21 lines (21 loc) · 807 Bytes
/
searchform.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
* The template for displaying search forms in required+ Foundation
*
* @package required+ Foundation
* @since required+ Foundation 0.1.0
*/
?>
<!-- START: searchform.php -->
<form role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
<label class="hide" for="s"><?php _e( 'Search for:', 'requiredfoundation' ); ?></label>
<div class="row collapse">
<div class="eight mobile-three columns">
<input type="text" value="" name="s" id="s" placeholder="<?php _e( 'Search', 'requiredfoundation' ); ?>">
</div>
<div class="four mobile-one columns">
<input type="submit" id="searchsubmit" value="<?php _e( 'Search', 'requiredfoundation' ); ?>" class="postfix button">
</div>
</div>
</form>
<!-- END: searchform.php -->