diff options
Diffstat (limited to 'templates/page.html')
-rw-r--r-- | templates/page.html | 23 |
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> |