mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
22 lines
812 B
PHP
22 lines
812 B
PHP
|
<?php
|
||
|
/** searchform.php
|
||
|
*
|
||
|
* The template for displaying search forms
|
||
|
*
|
||
|
* @author Konstantin Obenland
|
||
|
* @package The Bootstrap
|
||
|
* @since 1.0.0 - 07.02.2012
|
||
|
*/
|
||
|
?>
|
||
|
<form method="get" id="searchform" class="form-search" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
||
|
<label for="s" class="assistive-text hidden"><?php _e( 'Search', 'the-bootstrap' ); ?></label>
|
||
|
<div class="input-append">
|
||
|
<input id="s" class="span2 search-query" type="search" name="s" placeholder="<?php esc_attr_e( 'Search', 'the-bootstrap' ); ?>"><!--
|
||
|
--><button class="btn btn-primary" name="submit" id="searchsubmit" type="submit"><?php _e( 'Go', 'the-bootstrap' ); ?></button>
|
||
|
</div>
|
||
|
</form>
|
||
|
<?php
|
||
|
|
||
|
|
||
|
/* End of file searchform.php */
|
||
|
/* Location: ./wp-content/themes/the-bootstrap/searchform.php */
|