aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2020-10-07 10:02:56 +0200
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2020-10-07 10:02:56 +0200
commit4dc15c964c3cf265cf3c1bd3e6402b617229c21a (patch)
treee01cd23b3b94fc91db4e6e3c85fa6e4a16b72ccc /templates
parentbd04511b83f6fdde1df05419bf6439f50f91d64c (diff)
Template minimale per mostrare bookmark in una pagina html
Diffstat (limited to 'templates')
-rw-r--r--templates/page.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html
new file mode 100644
index 0000000..b5d1191
--- /dev/null
+++ b/templates/page.html
@@ -0,0 +1,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>