From 9fd617756c66dfb10f21dfc6c905c34bc5fb61ac Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 22 Apr 2014 13:07:08 -0700 Subject: [PATCH] Move the generated date from the top of the page to the footer. It's useful reference information, but anyone who wants it will look for and find it. We don't need this front-and-center. --- notmuch-to-html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/notmuch-to-html b/notmuch-to-html index 663dd87..edf5c97 100755 --- a/notmuch-to-html +++ b/notmuch-to-html @@ -295,18 +295,15 @@ _PAGES['html'] = HtmlPage(

{title}

-

-Generated: {date}
{blurb}

Views

-'''.format(date=datetime.datetime.utcnow().date(), - title=config['meta']['title'], +'''.format(title=config['meta']['title'], blurb=config['meta']['blurb'], encoding=_ENCODING, inter_message_padding='0.25em', border_radius='0.5em'), - footer='\n\n', + footer='

Generated: {date}\n\n'.format(date=datetime.datetime.utcnow().date()) ) if args.list_views: -- 2.43.0