{% if searchTerms is defined or searchID is defined %}
<div id="SearchBarFull" {% include 'parts/_custom-el-css.html.twig' with {'cssToUse':[{'searchbar_bg_hex_color':'background-color'}]} %}>
<form id="Search" name="Search" method="POST">
<input type="text" name="searchTerms"/>{#
#}<input type="submit" value="search" {% include 'parts/_custom-el-css.html.twig' with {'cssToUse':[{'searchbar_button_bg_hex_color2':'background-color'}]} %}/>
</form>
{% if searchTerms is defined %}
<div class="searchTerms">
<p class="title"> Your search results for: </p>
<p class="terms"> "{{ searchTerms }}" </p>
</div>
{% endif %}
</div>
{% endif %}