From dd71f019de0314f7b3f2ae1e0aa920e49e9f2759 Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Tue, 24 Jun 2025 18:37:57 +0400 Subject: refactor: everything chaged --- 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