BS3 markup for templates

This commit is contained in:
Foxaii
2013-07-28 13:21:50 +01:00
parent e00a7251de
commit 3bde5dbf77
4 changed files with 31 additions and 23 deletions

View File

@@ -1,5 +1,9 @@
<form role="search" method="get" id="searchform" class="form-search" action="<?php echo home_url('/'); ?>">
<label class="hide" for="s"><?php _e('Search for:', 'roots'); ?></label>
<input type="text" value="<?php if (is_search()) { echo get_search_query(); } ?>" name="s" id="s" class="search-query" placeholder="<?php _e('Search', 'roots'); ?> <?php bloginfo('name'); ?>">
<input type="submit" id="searchsubmit" value="<?php _e('Search', 'roots'); ?>" class="btn">
<form role="search" method="get" id="searchform" class="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" id="s" class="form-control" placeholder="<?php _e('Search', 'roots'); ?> <?php bloginfo('name'); ?>">
<label class="hide" for="s"><?php _e('Search for:', 'roots'); ?></label>
<span class="input-group-btn">
<button type="submit" id="searchsubmit" class="btn"><?php _e('Search', 'roots'); ?></button>
</span>
</div>
</form>