add note about auto-refresh

This commit is contained in:
insects 2025-02-09 18:00:49 +01:00
parent 57f803defd
commit f36e9019f4
3 changed files with 12 additions and 1 deletions

View file

@ -12,6 +12,7 @@ pub fn changelog_page() -> Markup {
li { "Improved display of fish conditions, the weather constraints are now shown" }
li { "The fishing hole name is now also shown next to the fish"}
li { "Color-coded the patch display badges" }
li { "Added a note about website auto-refresh next to the Eorzea clock"}
}
}

View file

@ -42,7 +42,10 @@ pub fn layout(content: Markup) -> Markup {
pub fn main_page(data: ViewData) -> Markup {
let list = html! {
h2.clock { "ET " (clock::get_current_eorzea_date().format("%H:%M")) }
h2.clock {
"ET " (clock::get_current_eorzea_date().format("%H:%M"))
small { "refreshes every ~10 seconds" }
}
(fish_list(&data))
script src="/static/scripts/dates.js" type="text/javascript" {}
};

View file

@ -198,6 +198,13 @@ summary:hover {
background: #e5b522;
}
h2 small {
font-size: 16px;
font-weight: normal;
color: gray;
margin-left: 4px;
}
.zone {
font-size: 13px;
color: gray;