aboutsummaryrefslogtreecommitdiff
path: root/src/web.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/web.rs')
-rw-r--r--src/web.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/web.rs b/src/web.rs
index 8aa7a2a..c7bff3d 100644
--- a/src/web.rs
+++ b/src/web.rs
@@ -1,5 +1,5 @@
use crate::{log::LOG, Check, Config, Service, Status, STATUS};
-use chrono::SubsecRound;
+use chrono::{SubsecRound, Utc};
use markup::{doctype, Render};
use std::{collections::BTreeMap, ops::Deref, sync::Arc};
@@ -47,6 +47,9 @@ pub async fn make_html_page(config: Arc<Config>) -> String {
}
}
}
+ footer {
+ "Generated " @Utc::now().to_rfc2822() " by " a[href="https://codeberg.org/metamuffin/statuspage"]{ "statuspage" } "."
+ }
}
}
}