X-Git-Url: http://git.subgeniuskitty.com/cmless/.git/blobdiff_plain/d955cfad358f87bc92b6f3cb2d1741e5dbb61cc5..0a58f7f180aedab31fdb9fdded7eaba1221893e4:/bin/cmless.py diff --git a/bin/cmless.py b/bin/cmless.py index ddba963..6663cdc 100755 --- a/bin/cmless.py +++ b/bin/cmless.py @@ -13,8 +13,9 @@ def main(): print("Content-Type: text/html;charset=utf-8\n") content = misc.load_file(config.site_template_prefix + "/" + config.template_file) - content = template.tpl_title(content) - content = template.tpl_body(content) + content = template.page_title(content) + content = template.site_title(content) + content = template.body(content) print(content) if __name__ == "__main__":