~alcinnz/Hearth

ref: 9e6825a2aaa3509e098aab05258c4b6f49736e5e Hearth/tpl/history.html -rw-r--r-- 426 bytes
9e6825a2 — Adrian Cochrane Basic favourites support, commit missing files. 11 months ago
                                                                                
ad72934e Adrian Cochrane
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8 />
  <title>⏳️{{ _["History"] }}</title>
</head>
<body>
  <h1>⏳️{{ _["History"] }}</title>
  <!-- NOTE: Only contains unique domains, to differentiate from other history views -->
  <dl>{% for entry in hist %}
    <dt>{{ entry.time }}</dt> <!-- TODO: Deduplicate! -->
    <dd><a href="{{ entry.href }}">{{ entry.label }}</a></dd>
  {% endfor %}</dl>
</body>
</html>