File size: 752 Bytes
137c62e
15fc415
a912e64
 
 
 
564662b
574b21e
a912e64
 
 
574b21e
15fc415
a912e64
15fc415
a912e64
 
 
 
 
 
15fc415
 
a912e64
15fc415
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{>header this.style}}
<main class="results">
  {{>search_bar}}
  <div class="results_aggregated">
    {{#each results}}
    <div class="result">
      <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>
        {{/each}}
      </div>
    </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>
</main>
<script src="static/index.js"></script>
<script src="static/pagination.js"></script>
{{>footer}}