* #62 add theme options for title and favicon

* docs

* version bump
This commit is contained in:
2022-10-27 17:26:56 +02:00
committed by GitHub
parent c40f009523
commit 67d4f09bd7
9 changed files with 31 additions and 15 deletions

View File

@@ -42,4 +42,12 @@ lazy_static! {
.unwrap_or("".to_string())
.parse()
.unwrap();
pub static ref THEME_PAGE_TITLE: String = std::env::var("THEME_PAGE_TITLE")
.unwrap_or("".to_string())
.parse()
.unwrap();
pub static ref THEME_FAVICON: String = std::env::var("THEME_FAVICON")
.unwrap_or("".to_string())
.parse()
.unwrap();
}