2023-04-30 11:16:08 -04:00
|
|
|
{{>header this.style}}
|
2023-04-22 07:35:07 -04:00
|
|
|
<main class="results">
|
2023-09-02 10:51:29 -04:00
|
|
|
{{>search_bar this}}
|
|
|
|
<div class="results_aggregated">
|
|
|
|
{{#if results}} {{#each results}}
|
|
|
|
<div class="result">
|
|
|
|
<h1><a href="{{{this.url}}}">{{{this.title}}}</a></h1>
|
|
|
|
<small>{{{this.url}}}</small>
|
|
|
|
<p>{{{this.description}}}</p>
|
|
|
|
<div class="upstream_engines">
|
|
|
|
{{#each engine}}
|
|
|
|
<span>{{{this}}}</span>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/each}} {{else}} {{#if disallowed}}
|
|
|
|
<div class="result_disallowed">
|
|
|
|
<div class="description">
|
|
|
|
<p>
|
|
|
|
Your search - <span class="user_query">{{{this.pageQuery}}}</span> -
|
|
|
|
has been disallowed.
|
|
|
|
</p>
|
|
|
|
<p class="description_paragraph">Dear user,</p>
|
|
|
|
<p class="description_paragraph">
|
|
|
|
The query - <span class="user_query">{{{this.pageQuery}}}</span> - has
|
|
|
|
been blacklisted via server configuration and hence disallowed by the
|
|
|
|
server. Henceforth no results could be displayed for your query.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<img src="./images/barricade.png" alt="Image of a Barricade" />
|
|
|
|
</div>
|
|
|
|
{{else}} {{#if filtered}}
|
|
|
|
<div class="result_filtered">
|
|
|
|
<div class="description">
|
|
|
|
<p>
|
|
|
|
Your search - <span class="user_query">{{{this.pageQuery}}}</span> -
|
|
|
|
has been filtered.
|
|
|
|
</p>
|
|
|
|
<p class="description_paragraph">Dear user,</p>
|
|
|
|
<p class="description_paragraph">
|
|
|
|
All the search results contain results that has been configured to be
|
|
|
|
filtered out via server configuration and henceforth has been
|
|
|
|
completely filtered out.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<img src="./images/filter.png" alt="Image of a paper inside a funnel" />
|
|
|
|
</div>
|
2023-09-23 05:53:18 -04:00
|
|
|
{{else}} {{#if noEnginesSelected}}
|
|
|
|
<div class="result_engine_not_selected">
|
|
|
|
<div class="description">
|
|
|
|
<p>
|
|
|
|
No results could be fetched for your search "<span class="user_query">{{{this.pageQuery}}}</span>" .
|
|
|
|
</p>
|
|
|
|
<p class="description_paragraph">Dear user,</p>
|
|
|
|
<p class="description_paragraph">
|
|
|
|
No results could be retrieved from the upstream search engines as no
|
|
|
|
upstream search engines were selected from the settings page.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<img src="./images/no_selection.png" alt="Image of a white cross inside a red circle" />
|
|
|
|
</div>
|
2023-09-02 10:51:29 -04:00
|
|
|
{{else}}
|
|
|
|
<div class="result_not_found">
|
|
|
|
<p>Your search - {{{this.pageQuery}}} - did not match any documents.</p>
|
|
|
|
<p class="suggestions">Suggestions:</p>
|
|
|
|
<ul>
|
|
|
|
<li>Make sure that all words are spelled correctly.</li>
|
|
|
|
<li>Try different keywords.</li>
|
|
|
|
<li>Try more general keywords.</li>
|
|
|
|
</ul>
|
|
|
|
<img src="./images/no_results.gif" alt="Man fishing gif" />
|
|
|
|
</div>
|
2023-09-23 05:53:18 -04:00
|
|
|
{{/if}} {{/if}} {{/if}} {{/if}}
|
2023-04-22 07:35:07 -04:00
|
|
|
</div>
|
2023-09-02 10:51:29 -04:00
|
|
|
<div class="page_navigation">
|
|
|
|
<button type="button" onclick="navigate_backward()">
|
|
|
|
← previous
|
|
|
|
</button>
|
|
|
|
<button type="button" onclick="navigate_forward()">next →</button>
|
2023-08-09 21:32:47 -04:00
|
|
|
</div>
|
2023-04-22 07:35:07 -04:00
|
|
|
</main>
|
|
|
|
<script src="static/index.js"></script>
|
2023-09-22 12:31:52 -04:00
|
|
|
<script src="static/search_area_options.js"></script>
|
2023-05-03 14:31:52 -04:00
|
|
|
<script src="static/pagination.js"></script>
|
2023-08-09 21:32:47 -04:00
|
|
|
<script src="static/error_box.js"></script>
|
2023-04-22 07:35:07 -04:00
|
|
|
{{>footer}}
|