2020-04-05 17:13:32 +08:00

12 lines
361 B
Plaintext

{%- if theme.algolia_search.enable or theme.local_search.enable %}
<div class="search-pop-overlay">
<div class="popup search-popup">
{%- if theme.algolia_search.enable %}
{% include 'algolia-search.njk' %}
{% elif theme.local_search.enable %}
{% include 'localsearch.njk' %}
{%- endif %}
</div>
</div>
{%- endif %}