diff options
author | metamuffin <metamuffin@disroot.org> | 2024-05-06 16:03:44 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-05-06 16:04:04 +0200 |
commit | bbb6a5583d16f559b09171d12fd0673f5a8060eb (patch) | |
tree | fbc737aefa711e8fcf72511b13a5fdda316f606e | |
parent | f728da5216d1fd9373c2fc02647d56ceb0381355 (diff) | |
download | statuspage-bbb6a5583d16f559b09171d12fd0673f5a8060eb.tar statuspage-bbb6a5583d16f559b09171d12fd0673f5a8060eb.tar.bz2 statuspage-bbb6a5583d16f559b09171d12fd0673f5a8060eb.tar.zst |
use title as <title>
-rw-r--r-- | src/web.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ pub async fn make_html_page(config: Arc<Config>) -> String { head { meta[charset="UTF-8"]; meta[name="viewport", content="width=device-width, initial-scale=1.0"]; - title { "Status Page" } + title { @config.title } style { @css } } body { |