diff --git a/hayabusa_report.css b/config/html_report/hayabusa_report.css
similarity index 100%
rename from hayabusa_report.css
rename to config/html_report/hayabusa_report.css
diff --git a/config/html_report/logo.png b/config/html_report/logo.png
new file mode 100644
index 00000000..1b58bd41
Binary files /dev/null and b/config/html_report/logo.png differ
diff --git a/src/options/htmlreport.rs b/src/options/htmlreport.rs
index 03a2972f..cc417fab 100644
--- a/src/options/htmlreport.rs
+++ b/src/options/htmlreport.rs
@@ -101,12 +101,12 @@ pub fn create_html_file(input_html: String, path_str: String) {
html {
head {
meta(charset="UTF-8");
- link(rel="stylesheet", type="text/css", href="./hayabusa_report.css");
- link(rel="icon", type="image/png", href="./favicon.png");
+ link(rel="stylesheet", type="text/css", href="./config/html_report/hayabusa_report.css");
+ link(rel="icon", type="image/png", href="./config/html_report/favicon.png");
}
body {
section {
- img(id="logo", src = "./logo.png");
+ img(id="logo", src = "./config/html_report/logo.png");
: Raw(input_html.as_str());
}
}