diff --git a/main.c b/main.c
index 3846cb6..2d8cf91 100644
--- a/main.c
+++ b/main.c
@@ -83,7 +83,7 @@ int gettwtxt(FILE* f) {
char *l, *d, *m;
FILE* twtxt = fopen(SITEROOT "twtxt.txt", "r");
- scat(buf, "
recent activity:
");
+ scat(buf, "
recent activity:
");
if (!twtxt) {
error("Get twtxt feed", "no twtxt.txt");
return 0;
@@ -98,10 +98,11 @@ int gettwtxt(FILE* f) {
l++;
}
scat(msgbuf, l);
+ scat(buf, "");
scat(buf, datebuf);
- scat(buf, ": ");
+ scat(buf, ": | ");
scat(buf, msgbuf);
- scat(buf, " ");
+ scat(buf, " |
");
d = datebuf;
while (*d) {
*d++ = 0;
@@ -112,7 +113,7 @@ int gettwtxt(FILE* f) {
}
i++;
}
- scat(buf, "see all");
+ scat(buf, "
see all");
scat(buf, "
");
fputs(buf, f);
return 1;