From 6e77e0358abff4fe1997a9da882fae35c44a277a Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Tue, 24 Jun 2025 19:46:28 +0400 Subject: init: first commit --- scripts/boiler.py | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 scripts/boiler.py (limited to 'scripts/boiler.py') diff --git a/scripts/boiler.py b/scripts/boiler.py new file mode 100644 index 0000000..b5d75f4 --- /dev/null +++ b/scripts/boiler.py @@ -0,0 +1,55 @@ +import textwrap + +def print_html_head(title, style=None): + print(textwrap.dedent(f"""\ + + + + + + + + {title}""")) + + if style: + print(textwrap.dedent(f"""\ + """)) + + print(textwrap.dedent("""\ + + + + + + + +
Suleyman Farajli
+ + +
+ + +
""")) + +def print_html_tail(): + print(textwrap.dedent("""\ +
+

+ + copyleft (c) 2024-2025 Suleyman Farajli + +

+ + """)) -- cgit v1.2.3