From 384724a00be9dbb8f40d295f99b9c6bcfb48b387 Mon Sep 17 00:00:00 2001 From: lns Date: Wed, 20 Oct 2021 19:58:38 +0200 Subject: Added MD4C support to render HTML from Markdown text. * additional blog metadata properties Signed-off-by: lns --- wwwroot/index.html | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to 'wwwroot') diff --git a/wwwroot/index.html b/wwwroot/index.html index 8d3bbd4..554a952 100644 --- a/wwwroot/index.html +++ b/wwwroot/index.html @@ -2,13 +2,26 @@

blabla Test fn....: {{ test_fn }}
-Test RetFN.: {{ test_return_true }}
+Test RetFN.: {{ test_return_true }}


{% if exists("blog_listing") and length(blog_listing) > 0 %} + ## for entry in blog_listing - {{ loop.index1 }}: {{ entry.content_filename }} -> {{ entry.published }}
- {{ entry }}
- {{ indent(entry.content, 8, false, false) }}
+ + + + + + + + + + + ## endfor +
{{ loop.index1 }}{{ entry.content_filename }}{{ entry.title }}{{ entry.tags }}{{ entry.author }}{{ entry.createDate }}{{ entry.publishDate }}{{ entry.published }} + {{ indent(entry.content, 12, false, false) }} + {% if loop.is_last == false %}more{% else %}eof{% endif %}
+
{% endif %}

-- cgit v1.2.3