templates\parts\_searchbar.html.twig line 1

Open in your IDE?
  1. {% if searchTerms is defined or searchID is defined %}
  2. <div id="SearchBarFull" {% include 'parts/_custom-el-css.html.twig' with {'cssToUse':[{'searchbar_bg_hex_color':'background-color'}]} %}>
  3.     <form id="Search" name="Search" method="POST">
  4.         <input type="text" name="searchTerms"/>{#
  5.         #}<input type="submit" value="search" {% include 'parts/_custom-el-css.html.twig' with {'cssToUse':[{'searchbar_button_bg_hex_color2':'background-color'}]} %}/>
  6.     </form>    
  7.     {% if searchTerms is defined %}
  8.         <div class="searchTerms">
  9.         <p class="title"> Your search results for: </p>
  10.         <p class="terms"> "{{ searchTerms }}" </p>
  11.         </div>
  12.     {% endif %}
  13. </div>
  14. {% endif %}