diff --git a/src/templates.rs b/src/templates.rs index b681e1d..559059b 100644 --- a/src/templates.rs +++ b/src/templates.rs @@ -159,6 +159,11 @@ pub fn main_page( .header { div {} .side { + .menu { + span { "Beacon " (env!("CARGO_PKG_VERSION")) } + a href="/changelog" { "Changelog" } + a href="/logout" { "Log out" } + } details { summary { "Filters" } form { diff --git a/static/style.css b/static/style.css index cac2da3..1f51142 100644 --- a/static/style.css +++ b/static/style.css @@ -17,6 +17,12 @@ section { align-items: center; } +.side { + display: flex; + flex-direction: column; + align-items: end; +} + select { width: 100%; } @@ -145,3 +151,8 @@ h2.clock { summary:hover { cursor: pointer; } + +.menu { + display: flex; + gap: 5px; +}