~alcinnz/Hearth

ref: ad72934e6b720b68ecba478e737a5237b5b57513 Hearth/tpl/index.html -rw-r--r-- 490 bytes
ad72934e — Adrian Cochrane Add a topsites listing with history page 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8 />
  <title>{{ _["Homepage"] }}</title>
</head>
<body>
  <form method="POST">
    <p><input type="url" name="url" placeholder="{{ _['Web Address'] }}" required /></p>
  </form>
  <main>
    <section>
      <h1><a href="history.html">⏳️{{ _["History"] }}</a></h1>
      <ul>{% for topsite in tops %}
        <li><a href="{{ topsite.href }}">{{ topsite.label }}</a></li>
      {% endfor %}</ul>
    </section>
  </main>
</body>
</html>