add note about auto-refresh
This commit is contained in:
parent
57f803defd
commit
f36e9019f4
3 changed files with 12 additions and 1 deletions
|
@ -12,6 +12,7 @@ pub fn changelog_page() -> Markup {
|
||||||
li { "Improved display of fish conditions, the weather constraints are now shown" }
|
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 { "The fishing hole name is now also shown next to the fish"}
|
||||||
li { "Color-coded the patch display badges" }
|
li { "Color-coded the patch display badges" }
|
||||||
|
li { "Added a note about website auto-refresh next to the Eorzea clock"}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,10 @@ pub fn layout(content: Markup) -> Markup {
|
||||||
|
|
||||||
pub fn main_page(data: ViewData) -> Markup {
|
pub fn main_page(data: ViewData) -> Markup {
|
||||||
let list = html! {
|
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))
|
(fish_list(&data))
|
||||||
script src="/static/scripts/dates.js" type="text/javascript" {}
|
script src="/static/scripts/dates.js" type="text/javascript" {}
|
||||||
};
|
};
|
||||||
|
|
|
@ -198,6 +198,13 @@ summary:hover {
|
||||||
background: #e5b522;
|
background: #e5b522;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h2 small {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: normal;
|
||||||
|
color: gray;
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
.zone {
|
.zone {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: gray;
|
color: gray;
|
||||||
|
|
Loading…
Add table
Reference in a new issue