about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-30 12:39:30 -0400
committerJune McEnroe <june@causal.agency>2020-04-30 12:39:30 -0400
commit432f939d4d1ee0c5611fbb1028d97c3f0e97bc2f (patch)
tree281e8496f7bcdfb7b7ca2011fd8f9a7d4949fa8c
parentNest <q> elements for increased levels of quotation (diff)
downloadbubger-432f939d4d1ee0c5611fbb1028d97c3f0e97bc2f.tar.gz
bubger-432f939d4d1ee0c5611fbb1028d97c3f0e97bc2f.zip
Wrap footer text in <small>
-rw-r--r--html.c4
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)) },