2023-04-30 11:16:08 -04:00
|
|
|
{{>header this.style}}
|
2023-04-22 07:35:07 -04:00
|
|
|
<main class="results">
|
2023-05-03 14:31:52 -04:00
|
|
|
{{>search_bar}}
|
|
|
|
<div class="results_aggregated">
|
|
|
|
{{#each results}}
|
|
|
|
<div class="result">
|
2023-06-27 09:29:05 -04:00
|
|
|
<h1><a href="{{{this.visitingUrl}}}">{{{this.title}}}</a></h1>
|
2023-06-25 13:29:15 -04:00
|
|
|
<small>{{{this.url}}}</small>
|
2023-05-03 14:31:52 -04:00
|
|
|
<p>{{{this.description}}}</p>
|
|
|
|
<div class="upstream_engines">
|
|
|
|
{{#each engine}}
|
2023-06-25 13:29:15 -04:00
|
|
|
<span>{{{this}}}</span>
|
2023-04-22 07:35:07 -04:00
|
|
|
{{/each}}
|
2023-05-03 14:31:52 -04:00
|
|
|
</div>
|
2023-04-22 07:35:07 -04:00
|
|
|
</div>
|
2023-05-03 14:31:52 -04:00
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
<div class="page_navigation">
|
|
|
|
<button type="button" onclick="navigate_backward()">← previous</button>
|
|
|
|
<button type="button" onclick="navigate_forward()">next →</button>
|
|
|
|
</div>
|
2023-04-22 07:35:07 -04:00
|
|
|
</main>
|
|
|
|
<script src="static/index.js"></script>
|
2023-05-03 14:31:52 -04:00
|
|
|
<script src="static/pagination.js"></script>
|
2023-04-22 07:35:07 -04:00
|
|
|
{{>footer}}
|