about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-17 14:40:27 -0400
committerJune McEnroe <june@causal.agency>2020-04-17 14:40:27 -0400
commit2f5c55e88d0da24bdb65fac887d13505a4d0137e (patch)
treebc4175409b86e13c05bc93986a33ef57b355d706
parentChoose text/plain from multipart/alternative (diff)
downloadbubger-2f5c55e88d0da24bdb65fac887d13505a4d0137e.tar.gz
bubger-2f5c55e88d0da24bdb65fac887d13505a4d0137e.zip
Label atom and mbox links "follow" and "download"
-rw-r--r--html.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/html.c b/html.c
index 677b4aa..9e37db8 100644
--- a/html.c
+++ b/html.c
@@ -112,7 +112,7 @@ int htmlMessageOpen(FILE *file, const struct Envelope *envelope) {
 			<time datetime="[utc]">[date]</time>
 			<nav>
 				<ul>
-					<li><a href="[mbox]">mbox</a></li>
+					<li><a href="[mbox]">download</a></li>
 				</ul>
 			</nav>
 	);
@@ -204,8 +204,8 @@ int htmlThreadOpen(FILE *file, const struct Envelope *envelope) {
 			<h1>[subject]</h1>
 			<nav>
 				<ul>
-					<li><a href="[url].atom">Atom</a></li>
-					<li><a href="[url].mbox">mbox</a></li>
+					<li><a href="[url].atom">follow</a></li>
+					<li><a href="[url].mbox">download</a></li>
 				</ul>
 			</nav>
 		</header>