diff options
author | Blaise Thompson <blaise@untzag.com> | 2021-07-05 22:49:43 -0500 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2021-07-05 22:49:43 -0500 |
commit | 0918e792374eb35607c8d9ae6741a7f4e4207465 (patch) | |
tree | 3edb673eb752c1796a5caea29c455010138d9395 | |
parent | 558652a6825de96dcb114aff8bc183ae9230c409 (diff) |
datetime.datetime
-rw-r--r-- | build.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -114,10 +114,11 @@ with open(__here__ / "public" / "index.html", "w") as html: break # footer html.write("<hr>") - html.write("<p style=\"display:inline;\">" - html.write(f"built {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} UTC") + html.write("<p style=\"display:inline;\">") + html.write(f"built {datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')} UTC") + html.write("<div style=\"float:right;\">") html.write("<a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a>: no copyright") - html.write(" (<a href=\"http://git.blaise.zone/website/blog.git/\">source</a>)") + html.write(" (<a href=\"http://git.blaise.zone/website/agenda.git/\">source</a>)") html.write("</div>") html.write("</p>") html.write("</body>\n") |