diff options
author | June McEnroe <june@causal.agency> | 2020-04-17 14:40:27 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-04-17 14:40:27 -0400 |
commit | 2f5c55e88d0da24bdb65fac887d13505a4d0137e (patch) | |
tree | bc4175409b86e13c05bc93986a33ef57b355d706 | |
parent | Choose text/plain from multipart/alternative (diff) | |
download | bubger-2f5c55e88d0da24bdb65fac887d13505a4d0137e.tar.gz bubger-2f5c55e88d0da24bdb65fac887d13505a4d0137e.zip |
Label atom and mbox links "follow" and "download"
Diffstat (limited to '')
-rw-r--r-- | html.c | 6 |
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> |