aboutsummaryrefslogtreecommitdiff
path: root/wwwroot/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'wwwroot/index.html')
-rw-r--r--wwwroot/index.html21
1 files changed, 17 insertions, 4 deletions
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 @@
<p>
<b>blabla</b>
Test fn....: <b>{{ test_fn }}</b><br>
-Test RetFN.: <b>{{ test_return_true }}</b><br>
+Test RetFN.: <b>{{ test_return_true }}</b><br><br><br>
{% if exists("blog_listing") and length(blog_listing) > 0 %}
+<table>
## for entry in blog_listing
- {{ loop.index1 }}: {{ entry.content_filename }} -> {{ entry.published }}<br>
- <b>{{ entry }}</b><br>
- {{ indent(entry.content, 8, false, false) }}<br>
+ <tr>
+ <td>{{ loop.index1 }}</td>
+ <td>{{ entry.content_filename }}</td>
+ <td>{{ entry.title }}</td>
+ <td>{{ entry.tags }}</td>
+ <td>{{ entry.author }}</td>
+ <td>{{ entry.createDate }}</td>
+ <td>{{ entry.publishDate }}</td>
+ <td>{{ entry.published }}</td>
+ <td>
+ {{ indent(entry.content, 12, false, false) }}
+ </td>
+ <td>{% if loop.is_last == false %}more{% else %}eof{% endif %}<br>
+ </tr>
## endfor
+</table>
{% endif %}
</p>
</body></html>