X-Git-Url: http://git.subgeniuskitty.com/cmless/.git/blobdiff_plain/d955cfad358f87bc92b6f3cb2d1741e5dbb61cc5..990c6f795837b53044174097e643466a19d6c232:/bin/cmless.py diff --git a/bin/cmless.py b/bin/cmless.py index ddba963..84d5b69 100755 --- a/bin/cmless.py +++ b/bin/cmless.py @@ -13,8 +13,10 @@ 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.current_year(content) + content = template.body(content) print(content) if __name__ == "__main__":