~alcinnz/Hearth

ref: 9e6825a2aaa3509e098aab05258c4b6f49736e5e Hearth/tpl/toread.html -rw-r--r-- 327 bytes
9e6825a2 — Adrian Cochrane Basic favourites support, commit missing files. 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <title>📚️{{ _["Reading List"] }}</title>
</head>
<body>
  <h1>📚️{{ _["Reading List"] }}</h1>
  <ul>{% for link in D.readingList %}
    <li><a href="/read/{{ link.href }}" title="{{ link.title }}">{{ link.label }}</a></li>
  {% endfor %}</ul>
</body>
</html>