To add search box in bloggers template , we may use the form element
from the bootstrap documentation , and need to change few coded mentioned
below,
In <form> add
method="get"
action="/search"
In <input> add
name='q'
the final code would be look like this , see the code below ;
<nav class="navbar navbar-default">
<div class="container-fluid">
<form
method="get" action="/search"
class="navbar-form navbar-left" role="search">
<div class="form-group">
<input
name='q' type="text"
class="form-control" placeholder="Search"></input>
</div>
<button type="submit" class="btn
btn-default">Submit</button>
</form>
</div>
</nav>