summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css6
-rw-r--r--ui-shared.c3
2 files changed, 9 insertions, 0 deletions
diff --git a/cgit.css b/cgit.css
index d57722c..fac5f85 100644
--- a/cgit.css
+++ b/cgit.css
@@ -444,6 +444,12 @@ span.age-months {
444 color: #888; 444 color: #888;
445} 445}
446 446
447span.age-years { 447span.age-years {
448 color: #bbb; 448 color: #bbb;
449} 449}
450div.footer {
451 margin-top: 0.5em;
452 text-align: center;
453 font-size: 80%;
454 color: #ccc;
455}
diff --git a/ui-shared.c b/ui-shared.c
index f366354..44269a7 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -440,12 +440,15 @@ void cgit_print_docstart(struct cgit_context *ctx)
440 html("</head>\n"); 440 html("</head>\n");
441 html("<body>\n"); 441 html("<body>\n");
442} 442}
443 443
444void cgit_print_docend() 444void cgit_print_docend()
445{ 445{
446 html("</div><div class='footer'>generated ");
447 cgit_print_date(time(NULL), FMT_LONGDATE);
448 htmlf(" by cgit %s", cgit_version);
446 html("</div>\n</body>\n</html>\n"); 449 html("</div>\n</body>\n</html>\n");
447} 450}
448 451
449int print_branch_option(const char *refname, const unsigned char *sha1, 452int print_branch_option(const char *refname, const unsigned char *sha1,
450 int flags, void *cb_data) 453 int flags, void *cb_data)
451{ 454{