X-Git-Url: http://git.subgeniuskitty.com/cmless/.git/blobdiff_plain/3c8b5f36ebbadeafa37eba82e96b0531862f3888..990c6f795837b53044174097e643466a19d6c232:/bin/template.py diff --git a/bin/template.py b/bin/template.py index f27f493..a39090f 100644 --- a/bin/template.py +++ b/bin/template.py @@ -2,7 +2,7 @@ # See LICENSE file for copyright and license details. # Python imports -import os +import os, datetime # CMless imports import config, misc @@ -25,3 +25,9 @@ def body(template): body = misc.process_markup(body) return template.replace(config.template_delimiter + keyword + config.template_delimiter, body) + +def current_year(template): + keyword = "current_year" + now = datetime.datetime.now() + return template.replace(config.template_delimiter + keyword + + config.template_delimiter, str(now.year))