diff options
author | Blaise Thompson <blaise@untzag.com> | 2021-07-05 22:44:50 -0500 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2021-07-05 22:44:50 -0500 |
commit | 558652a6825de96dcb114aff8bc183ae9230c409 (patch) | |
tree | ff575b9b826e0b66472116707877ea46b6d2fdc7 | |
parent | 17fba39d4beeecdeb4c84565e9b3d0c2054d5dca (diff) |
new footer
-rw-r--r-- | build.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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") |