2021-09-01 18:23:28 +02:00
|
|
|
<div class="empty_feed_notice">
|
2023-10-20 13:39:47 +02:00
|
|
|
<h4 class="empty-feed-notice-title"> {{ title }} </h4>
|
|
|
|
<div class="empty-feed-notice-description">
|
|
|
|
{{#if search_data}}
|
|
|
|
{{#if search_data.has_stop_word}}{{t "Some common words were excluded from your search." }} <br/>{{/if}}{{t "You searched for:" }}
|
|
|
|
{{#if search_data.stream_query}}
|
|
|
|
<span>stream: {{search_data.stream_query}}</span>
|
2021-09-01 18:23:28 +02:00
|
|
|
{{/if}}
|
2023-10-20 13:39:47 +02:00
|
|
|
{{#if search_data.topic_query}}
|
|
|
|
<span>topic: {{search_data.topic_query}}</span>
|
|
|
|
{{/if}}
|
|
|
|
{{#each search_data.query_words}}
|
|
|
|
{{#if is_stop_word}}
|
|
|
|
<del>{{query_word}}</del>
|
|
|
|
{{else}}
|
|
|
|
<span>{{query_word}}</span>
|
|
|
|
{{/if}}
|
|
|
|
{{/each}}
|
|
|
|
{{else}}
|
|
|
|
{{{ html }}}
|
|
|
|
{{/if}}
|
2021-09-01 18:23:28 +02:00
|
|
|
</div>
|
|
|
|
</div>
|