Files
bedrock/templates/searchform.php
2013-08-02 00:56:51 +01:00

10 lines
577 B
PHP

<form role="search" method="get" class="search-form form-inline" action="<?php echo home_url('/'); ?>">
<div class="input-group">
<input type="search" value="<?php if (is_search()) { echo get_search_query(); } ?>" name="s" class="search-field form-control" placeholder="<?php _e('Search', 'roots'); ?> <?php bloginfo('name'); ?>">
<label class="hide"><?php _e('Search for:', 'roots'); ?></label>
<span class="input-group-btn">
<button type="submit" class="search-submit btn btn-default"><?php _e('Search', 'roots'); ?></button>
</span>
</div>
</form>