summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2018-06-24 16:19:35 +0800
committerAndy Green <andy@warmcat.com>2018-06-29 14:30:24 +0800
commit1e866dc8cdc5f39541830e53e94e0a9ad9fc5cfb (patch)
tree9616db67cab83240f87909be2df79299d4a7e19d
parent6e1401a9372e818a62e625ea20fcc0f98feebd63 (diff)
downloadcgit-ch/warmcat.tar.gz
ui-shared: add now-dynamic age to footerch/warmcat
Now ages advance at the client, we can add one to the generated footer. Signed-off-by: Andy Green <andy@warmcat.com>
-rw-r--r--ui-shared.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 2d79e36..6d19c58 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -849,7 +849,9 @@ void cgit_print_docend(void)
htmlf("<div class='footer'>generated by <a href='https://git.zx2c4.com/cgit/about/'>cgit %s</a> "
"(<a href='https://git-scm.com/'>git %s</a>) at ", cgit_version, git_version_string);
html_txt(show_date(time(NULL), 0, cgit_date_mode(DATE_ISO8601)));
- html("</div>\n");
+ html(" (");
+ cgit_print_age(time(NULL), 0, -1);
+ html(" ago)</div>\n");
}
html("</div> <!-- id=cgit -->\n");
html("</body>\n</html>\n");