diff options
Diffstat (limited to '')
-rw-r--r-- | html.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/html.c b/html.c index 12f3ff0..3cc740c 100644 --- a/html.c +++ b/html.c @@ -474,7 +474,9 @@ int htmlSubthreadClose(FILE *file) { static int htmlFooter(FILE *file) { const char *template = TEMPLATE( - <footer>generated <time datetime="[time]">[time]</time></footer> + <footer> + <small>generated <time datetime="[time]">[time]</time></small> + </footer> ); struct Variable vars[] = { { "time", htmlUTC(time(NULL)) }, |