summaryrefslogtreecommitdiff
path: root/journal.c
diff options
context:
space:
mode:
Diffstat (limited to 'journal.c')
-rw-r--r--journal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/journal.c b/journal.c
index bc7aa3f..c2e6249 100644
--- a/journal.c
+++ b/journal.c
@@ -41,7 +41,7 @@ static void print_entry(char *path, char *ts)
struct tm tm;
strptime(ts, "%s", &tm);
printf(
- "<div class='entry'><p><span class='date'>%d/%02d/%02d</span>&emsp;",
+ "<div class='entry'><p><strong>%d/%02d/%02d</strong>&emsp;",
tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday);
for (int c = getc(f), nl = 0; c != EOF; c = getc(f)) {