summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2021-07-05 22:49:43 -0500
committerBlaise Thompson <blaise@untzag.com>2021-07-05 22:49:43 -0500
commit0918e792374eb35607c8d9ae6741a7f4e4207465 (patch)
tree3edb673eb752c1796a5caea29c455010138d9395
parent558652a6825de96dcb114aff8bc183ae9230c409 (diff)
datetime.datetimeHEADmaster
-rw-r--r--build.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/build.py b/build.py
index 692eb4a..172c771 100644
--- a/build.py
+++ b/build.py
@@ -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")