summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-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")