This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-03 19:38:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying search forms in Underscores.me
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
|
|
|
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
|
|
|
|
<label for="s" class="assistive-text"><?php _e( 'Search', 'understrap' ); ?></label>
|
|
|
|
<div class="input-group">
|
2016-11-01 15:33:40 +00:00
|
|
|
<input type="text" class="field form-control" name="s" id="s" placeholder="<?php esc_attr_e( 'Search …', 'understrap' ); ?>">
|
2016-11-01 15:25:21 +00:00
|
|
|
<span class="input-group-btn">
|
2016-11-01 15:33:40 +00:00
|
|
|
<input type="submit" class="submit btn btn-primary" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'understrap' ); ?>">
|
2016-11-01 15:25:21 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</form>
|