aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
blob: b5d11914a958fb7b0b8c4fa8712b54c0b99cf904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
  <title>Bookmark del GL-Como</title>
</head>
<body>
  <h1>Bookmark del GL-Como</h1>

<dl>
{% for entry in entries %}
  <dd><a href="{{ entry.data.url }}">{{ entry.data.title }}</a></dd>
  <dl>
    <div>{{ entry.data.description }}<div>
    <div>{{ entry.data.added }}</div>
    <ul>
    {% for t in entry.data.tags %}
      <li>{{ t }}
    {% endfor %}
    </ul>
  </dl>
{% endfor %}
</dl>
</body>
</html>