Restore greyed print date (regression)

This commit is contained in:
Brian Read 2025-04-12 12:03:15 +01:00
parent 756e0f94c3
commit 9453031df3

View File

@ -1697,7 +1697,7 @@ if __name__ == "__main__":
with open(template_path, 'r') as template_file: with open(template_path, 'r') as template_file:
template_content = template_file.read() template_content = template_file.read()
#Use the hello string to create a suitable heading for the web page #Use the hello string to create a suitable heading for the web page
html_title = hello_string.replace("Printed at:"," <span class='greyed-out'>Printed at:") html_title = hello_string.replace("printed at:"," <span class='greyed-out'>printed at:")
html_title += "</span>" html_title += "</span>"
# Create a Chameleon template instance # Create a Chameleon template instance