]> granicus.if.org Git - cgit/commitdiff
ui-shared: add now-dynamic age to footer
authorAndy Green <andy@warmcat.com>
Sun, 24 Jun 2018 08:19:35 +0000 (16:19 +0800)
committerChristian Hesse <mail@eworm.de>
Mon, 19 Dec 2022 16:57:28 +0000 (17:57 +0100)
Now ages advance at the client, we can add one
to the generated footer.

Signed-off-by: Andy Green <andy@warmcat.com>
Signed-off-by: Christian Hesse <mail@eworm.de>
ui-shared.c

index 11aed19a80e882c6999eecb32250cd206fee5210..1bac2763b97425ecf4df4a7791e39f0db273ce73 100644 (file)
@@ -870,7 +870,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");