search.blade.php 435 B

12345678910111213141516
  1. <form role="search" method="get" class="search-form" action="{{ home_url('/') }}">
  2. <label>
  3. <span class="sr-only">
  4. {{ _x('Search for:', 'label', 'sage') }}
  5. </span>
  6. <input
  7. type="search"
  8. placeholder="{!! esc_attr_x('Search &hellip;', 'placeholder', 'sage') !!}"
  9. value="{{ get_search_query() }}"
  10. name="s"
  11. >
  12. </label>
  13. <button>{{ _x('Search', 'submit button', 'sage') }}</button>
  14. </form>