From d245c05825743e20d2df2900c4f8313d82ebcfe1 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Mon, 2 Feb 2026 21:10:12 +0530 Subject: first commit --- templates/shortcodes/guestbook_entry.html | 25 +++++++++++++++++++++++++ templates/shortcodes/guestbook_form.html | 20 ++++++++++++++++++++ templates/shortcodes/img.html | 13 +++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 templates/shortcodes/guestbook_entry.html create mode 100644 templates/shortcodes/guestbook_form.html create mode 100644 templates/shortcodes/img.html (limited to 'templates/shortcodes') diff --git a/templates/shortcodes/guestbook_entry.html b/templates/shortcodes/guestbook_entry.html new file mode 100644 index 0000000..69789ca --- /dev/null +++ b/templates/shortcodes/guestbook_entry.html @@ -0,0 +1,25 @@ +{% import "macros/date.html" as date %} + +
+

+ {% if website %}{% endif %} + {{ name | safe }} + {% if website %}{% endif %} +
+ +

+

+ {{ message | safe }} +

+ {% if reply %} +
+

+ {{ reply | safe }} +

+ — {{ config.extra.nickname }} +

+
+ {% endif %} +
diff --git a/templates/shortcodes/guestbook_form.html b/templates/shortcodes/guestbook_form.html new file mode 100644 index 0000000..99dcf4c --- /dev/null +++ b/templates/shortcodes/guestbook_form.html @@ -0,0 +1,20 @@ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+
diff --git a/templates/shortcodes/img.html b/templates/shortcodes/img.html new file mode 100644 index 0000000..8ff0820 --- /dev/null +++ b/templates/shortcodes/img.html @@ -0,0 +1,13 @@ +
+ {% if href %}{% endif %} + {{ alt }} + {% if href %}{% endif %} + + {% if caption %} +
{{ caption | safe }}
+ {% endif %} +
-- cgit v1.2.3