From 91dc9732ce54ba7298667be85c57e7d94d2f83b1 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Mon, 15 Nov 2021 12:52:15 +0100 Subject: Added template inheritance example. Signed-off-by: Toni Uhlig --- wwwroot/inherit/00_base.tmpl | 11 +++++++++++ wwwroot/inherit/index.html | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 wwwroot/inherit/00_base.tmpl create mode 100644 wwwroot/inherit/index.html (limited to 'wwwroot/inherit') diff --git a/wwwroot/inherit/00_base.tmpl b/wwwroot/inherit/00_base.tmpl new file mode 100644 index 0000000..c1af32e --- /dev/null +++ b/wwwroot/inherit/00_base.tmpl @@ -0,0 +1,11 @@ + + + + {% block head %} + {% block title %}{% endblock %} - My Webpage + {% endblock %} + + +
{% block content %}{% endblock %}
+ + diff --git a/wwwroot/inherit/index.html b/wwwroot/inherit/index.html new file mode 100644 index 0000000..a717e4f --- /dev/null +++ b/wwwroot/inherit/index.html @@ -0,0 +1,35 @@ +{% extends "inherit/00_base.tmpl" %} +{% block title %}Index{% endblock %} +{% block head %} + {{ super() }} + +{% endblock %} +{% block content %} +

Index

+

+ Welcome to my blog! +

+ +{% if exists("blog_listing") %} + +## for entry in blog_listing + + + + + + + + + + + +## endfor +
{{ loop.index1 }}{{ entry.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 %} +{% endblock %} -- cgit v1.2.3