2021-04-27 22:21:26 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying search form
|
|
|
|
*
|
2021-04-28 01:20:47 +02:00
|
|
|
* @package arcHIVE-theme
|
|
|
|
* @since arcHIVE-theme 1.0.0
|
2021-04-27 22:21:26 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<form role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
|
|
|
|
<div class="input-group">
|
|
|
|
<input type="text" class="input-group-field" value="" name="s" id="s" aria-label="Search" placeholder="<?php
|
|
|
|
esc_attr_e( 'Search', 'foundationpress' ); ?>">
|
|
|
|
<div class="input-group-button">
|
|
|
|
<input type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'foundationpress' ); ?>" class="button">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|