0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-10-18 14:32:52 -04:00
websurfx/public/templates/search.html

26 lines
752 B
HTML
Raw Normal View History

{{>header this.style}}
2023-04-22 07:35:07 -04:00
<main class="results">
{{>search_bar}}
<div class="results_aggregated">
{{#each results}}
<div class="result">
2023-06-27 09:39:28 -04:00
<h1><a href="/{{{this.visitingUrl}}}">{{{this.title}}}</a></h1>
<small>{{{this.url}}}</small>
<p>{{{this.description}}}</p>
<div class="upstream_engines">
{{#each engine}}
<span>{{{this}}}</span>
2023-04-22 07:35:07 -04:00
{{/each}}
</div>
2023-04-22 07:35:07 -04:00
</div>
{{/each}}
</div>
<div class="page_navigation">
<button type="button" onclick="navigate_backward()">&#8592; previous</button>
<button type="button" onclick="navigate_forward()">next &#8594;</button>
</div>
2023-04-22 07:35:07 -04:00
</main>
<script src="static/index.js"></script>
<script src="static/pagination.js"></script>
2023-04-22 07:35:07 -04:00
{{>footer}}