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 # Description: Example plugin -print("

") -print(" This blog is powered by Blogthon! ") -print("

") +ind = " " + +print(ind*2 + "

") +print(ind*3 + "This blog is powered by Blogthon!") +print(ind*2 + "

") print("")