From dc8073b8977c71c8f8ce8fa9017781b59238026c Mon Sep 17 00:00:00 2001 From: Michael Haslam Date: Sat, 16 Apr 2022 17:20:57 +0100 Subject: [PATCH] Adds two simple templates as multiline strings. This functionality will be expanded to use Jinja2 or similar later. --- tkintermd/constants.py | 43 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/tkintermd/constants.py b/tkintermd/constants.py index 5168ebf..a20e13b 100644 --- a/tkintermd/constants.py +++ b/tkintermd/constants.py @@ -243,4 +243,45 @@ def foo(): > > *do* **normally**. -""" \ No newline at end of file +""" +default_template_top = """ + + + + + + tkintermd - Default Template + + +""" +default_template_bottom = """ +""" +centered_template_top = """ + + + + + + tkintermd - Default Template + + +""" +centered_template_bottom = """ +""" \ No newline at end of file