diff options
author | Lars Hjemli | 2008-05-03 11:07:41 +0200 |
---|---|---|
committer | Lars Hjemli | 2008-05-03 11:07:41 +0200 |
commit | aa3c4486b41b8b13d0f52477f033837fc8bb9524 (patch) | |
tree | 9ab3b6b2b3b27ce4d3d5bdb7bd42c870aec8ed54 | |
parent | Add a pager on the repolist (diff) | |
download | cgit-aa3c4486b41b8b13d0f52477f033837fc8bb9524.tar.gz cgit-aa3c4486b41b8b13d0f52477f033837fc8bb9524.zip |
Add footer with page creation time and cgit version on all pages
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.css | 6 | ||||
-rw-r--r-- | ui-shared.c | 3 |
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 | |||
@@ -447,3 +447,9 @@ span.age-months { | |||
447 | span.age-years { | 447 | span.age-years { |
448 | color: #bbb; | 448 | color: #bbb; |
449 | } | 449 | } |
450 | div.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 | |||
@@ -443,6 +443,9 @@ void cgit_print_docstart(struct cgit_context *ctx) | |||
443 | 443 | ||
444 | void cgit_print_docend() | 444 | void 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 | ||