Created
December 11, 2018 08:20
-
-
Save aashestakov/3344eda34837dfc37864b66e93b23abc to your computer and use it in GitHub Desktop.
results-template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="top-search-block__results-template"> | |
<script type="text/x-handlebars-template"> | |
<div class="container"> | |
<div class="search-result-content"> | |
{{#if productItems.length}} | |
<div class="search-section clearfix"> | |
<div class="search-section-title">Товары</div> | |
<div class="search-section-content"> | |
{{#if anyArticleMatched}} | |
{{#each productItems }} | |
<div class="result-item top-search-block__result"> | |
<a href="{{{link}}}" class="result-link">{{{article}}}</a> | |
<a href="{{{link}}}" class="result-link">{{{brand}}}</a> | |
</div> | |
{{/each}} | |
{{else}} | |
{{#each productItems }} | |
<div class="result-item"><a href="{{{link}}}">{{{name}}}</a></div> | |
{{/each}} | |
{{/if}} | |
</div> | |
</div> | |
{{/if}} | |
{{#if sectionItems.length}} | |
<div class="search-section clearfix"> | |
<div class="search-section-title">Категории</div> | |
<div class="search-section-content"> | |
{{#each sectionItems }} | |
<div class="result-item"><a href="{{{link}}}">{{{name}}}</a></div> | |
{{/each}} | |
</div> | |
</div> | |
{{/if}} | |
</div> | |
</div> | |
</script> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment