Skip to content
Snippets Groups Projects
Commit 5445c5db authored by echicken's avatar echicken :chicken:
Browse files

Don't bold date, abbreviate month

parent 22e2668c
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ function dir_index(dir)
write("<tr>");
write("<td>" + f.name.link(f.name) + "</td>");
write("<td align=right>" + file_size_float(f.size, 1, 0) + "</td>");
write("<td align=right>" + strftime("%B %d, %Y", f.time).bold() + "</td>");
write("<td align=right>" + strftime("%b %d, %Y", f.time) + "</td>");
write("<td>" + utf8_encode(f.desc || "") + "</td>");
writeln("</tr>");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment