summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2021-07-05 22:44:50 -0500
committerBlaise Thompson <blaise@untzag.com>2021-07-05 22:44:50 -0500
commit558652a6825de96dcb114aff8bc183ae9230c409 (patch)
treeff575b9b826e0b66472116707877ea46b6d2fdc7
parent17fba39d4beeecdeb4c84565e9b3d0c2054d5dca (diff)
new footer
-rw-r--r--build.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.py b/build.py
index f4ee289..692eb4a 100644
--- a/build.py
+++ b/build.py
@@ -114,6 +114,11 @@ with open(__here__ / "public" / "index.html", "w") as html:
break
# footer
html.write("<hr>")
- html.write(f"last updated {today.isoformat()}")
+ html.write("<p style=\"display:inline;\">"
+ html.write(f"built {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} UTC")
+ 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("</div>")
+ html.write("</p>")
html.write("</body>\n")
html.write("</html>\n")