mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
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. Follow the pattern set by our header template with a triple-quoted string. The gray <hr> styling is less agressive. IE uses 'color' for drawing the rule, while Gecko and Opera use the border or 'background-color' [1]. [1]: https://bugzilla.mozilla.org/show_bug.cgi?id=239386
This commit is contained in:
parent
b5bdf5f4a8
commit
b70386a4cb
1 changed files with 13 additions and 5 deletions
|
@ -315,22 +315,30 @@ _PAGES['html'] = HtmlPage(
|
|||
tbody:nth-child(4n+3) tr td {{
|
||||
background-color: #bce;
|
||||
}}
|
||||
hr {{
|
||||
border: 0;
|
||||
height: 1px;
|
||||
color: #ccc;
|
||||
background-color: #ccc;
|
||||
}}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>{title}</h2>
|
||||
<p>
|
||||
Generated: {date}<br />
|
||||
{blurb}
|
||||
</p>
|
||||
<h3>Views</h3>
|
||||
'''.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='</body>\n</html>\n',
|
||||
footer='''
|
||||
<hr>
|
||||
<p>Generated: {date}
|
||||
</body>
|
||||
</html>
|
||||
'''.format(date=datetime.datetime.utcnow().date())
|
||||
)
|
||||
|
||||
if args.list_views:
|
||||
|
|
Loading…
Reference in a new issue