-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathsearchform.php
More file actions
19 lines (17 loc) · 785 Bytes
/
Copy pathsearchform.php
File metadata and controls
19 lines (17 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
* The template for displaying search forms in jbst
*
* @package jbst
* @since jbst 1.0
*/
?>
<form method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
<div class="form-group">
<label>
<span class="sr-only"><?php esc_attr_e( 'Search for:', 'jamedo-bootstrap-start-theme' ); ?></span>
<input type="search" class="form-control" placeholder="<?php esc_attr_e( 'Search …', 'jamedo-bootstrap-start-theme' ); ?>" value="" name="s" title="<?php esc_attr_e( 'Search for:', 'jamedo-bootstrap-start-theme' ); ?>" />
</label>
<button type="submit" class="btn <?php jbst_button_class();?> searchbutton" name="submit"><?php esc_attr_e( 'Search', 'jamedo-bootstrap-start-theme' ); ?></button>
</div>
</form>