mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-22 14:08:23 -05:00
26 lines
743 B
HTML
26 lines
743 B
HTML
{{>header this.style}}
|
|
<main class="results">
|
|
{{>search_bar}}
|
|
<div class="results_aggregated">
|
|
{{#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}}
|
|
</div>
|
|
<div class="page_navigation">
|
|
<button type="button" onclick="navigate_backward()">← previous</button>
|
|
<button type="button" onclick="navigate_forward()">next →</button>
|
|
</div>
|
|
</main>
|
|
<script src="static/index.js"></script>
|
|
<script src="static/pagination.js"></script>
|
|
{{>footer}}
|