diff options
-rw-r--r-- | plugins/plugin_example.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/plugin_example.py b/plugins/plugin_example.py index 9361921..9ed03ed 100644 --- a/plugins/plugin_example.py +++ b/plugins/plugin_example.py @@ -10,7 +10,9 @@ # Author: Stefan Ritter <xeno@thehappy.de> # Description: Example plugin -print(" <p style=\"position: absolute; top: 0px; right: 0px; color: #666666; font-size: 10px;\">") -print(" This blog is powered by Blogthon! ") -print(" </p>") +ind = " " + +print(ind*2 + "<p style=\"position: absolute; top: 0px; right: 5px; color: #666666; font-size: 10px;\">") +print(ind*3 + "This blog is powered by Blogthon!") +print(ind*2 + "</p>") print("") |