Compare commits

...

2 commits

Author SHA1 Message Date
b0bc2ea611 add note when there are no posts 2024-05-04 15:21:54 +03:00
e44f4e48b9 fix config env var 2024-05-04 15:21:54 +03:00
2 changed files with 8 additions and 2 deletions

View file

@ -139,7 +139,10 @@ impl Default for CacheConfig {
}
pub async fn load() -> Result<Config> {
let config_file = env::var(format!("{}_CONFIG", env!("CARGO_BIN_NAME")))
let config_file = env::var(format!(
"{}_CONFIG",
env!("CARGO_BIN_NAME").to_uppercase().replace("-", "_")
))
.unwrap_or(String::from("config.toml"));
match tokio::fs::OpenOptions::new()
.read(true)

View file

@ -17,6 +17,9 @@
<h2>posts</h2>
<!-- prettier-ignore -->
<div>
{% if posts.is_empty() %}
there are no posts right now. check back later!
{% endif %}<!-- prettier-br -->
{% for post in posts %}
<div class="post">
<a href="/posts/{{ post.name }}"><b>{{ post.title }}</b></a>