add picocss
All checks were successful
CI/CD Pipeline / test (push) Successful in 1m33s

This commit is contained in:
2024-02-17 10:26:17 +01:00
parent cb2a577bca
commit 42150a6561
18 changed files with 407 additions and 1 deletions

View File

@ -98,4 +98,9 @@ fn main() {
fs::write(&format!("output/{law_name}.html"), &site).expect("Unable to write file");
}
let style = fs::read_to_string("templates/style.css").unwrap();
fs::write(&format!("output/style.css"), &style).expect("Unable to write file");
let style = fs::read_to_string("templates/pico.min.css").unwrap();
fs::write(&format!("output/pico.min.css"), &style).expect("Unable to write file");
}