From 0f540cf2d320f7ea09048747d2b157060cfab0c2 Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Wed, 28 Oct 2020 16:32:42 +0100 Subject: Additional example collection: bookmarks --- docs/examples/bookmarks/templates/page.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/examples/bookmarks/templates/page.html (limited to 'docs/examples/bookmarks/templates/page.html') diff --git a/docs/examples/bookmarks/templates/page.html b/docs/examples/bookmarks/templates/page.html new file mode 100644 index 0000000..34aecca --- /dev/null +++ b/docs/examples/bookmarks/templates/page.html @@ -0,0 +1,23 @@ + + + My Bookmarks + + +

My Bookmarks

+ +
+{% for entry in entries %} +
{{ entry.data.title }}
+
+
{{ entry.data.description }}
+
{{ entry.data.added }}
+
    + {% for t in entry.data.tags %} +
  • {{ t }} + {% endfor %} +
+
+{% endfor %} +
+ + -- cgit v1.2.3