fix: readerer get theme dir path bug
This commit is contained in:
parent
a3d4febe3e
commit
fd4137a9ea
|
@ -452,7 +452,7 @@ impl Renderer for HtmlHandlebars {
|
|||
let mut handlebars = Handlebars::new();
|
||||
|
||||
let theme_dir = match html_config.theme {
|
||||
Some(ref theme) => theme.to_path_buf(),
|
||||
Some(ref theme) => ctx.root.join(theme),
|
||||
None => ctx.root.join("theme"),
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue