the repository which powers this website
Add footer with page creation time and cgit version on all pages
Signed-off-by: Lars Hjemli <[email protected]>
Lars Hjemli 2008-05-03
parent c6078b8 · commit aa3c448
-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 d57722c4..fac5f855 100644
--- a/cgit.css
+++ b/cgit.css
@@ -447,3 +447,9 @@ span.age-months {
span.age-years {
color: #bbb;
}
+div.footer {
+ margin-top: 0.5em;
+ text-align: center;
+ font-size: 80%;
+ color: #ccc;
+}
diff --git a/ui-shared.c b/ui-shared.c
index f3663549..44269a76 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -443,6 +443,9 @@ void cgit_print_docstart(struct cgit_context *ctx)
void cgit_print_docend()
{
+ html("</div><div class='footer'>generated ");
+ cgit_print_date(time(NULL), FMT_LONGDATE);
+ htmlf(" by cgit %s", cgit_version);
html("</div>\n</body>\n</html>\n");
}