Writing the stylesheets to the output folder.

This commit is contained in:
Tom Alexander
2023-12-17 13:46:47 -05:00
parent 20c55f0708
commit 884215a7e1
3 changed files with 32 additions and 5 deletions

View File

@@ -22,8 +22,13 @@ pub(crate) fn convert_blog_post_page_to_render_context<D: AsRef<Path>, F: AsRef<
let output_directory = output_directory.as_ref();
let output_file = output_file.as_ref();
let css_files = vec![
get_web_path(config, output_directory, output_file, "reset.css")?,
get_web_path(config, output_directory, output_file, "main.css")?,
get_web_path(
config,
output_directory,
output_file,
"stylesheet/reset.css",
)?,
get_web_path(config, output_directory, output_file, "stylesheet/main.css")?,
];
let js_files = vec![get_web_path(
config,