diff --git a/src/renderer/html_handlebars/hbs_renderer.rs b/src/renderer/html_handlebars/hbs_renderer.rs index 3240128381..7f5d83e26d 100644 --- a/src/renderer/html_handlebars/hbs_renderer.rs +++ b/src/renderer/html_handlebars/hbs_renderer.rs @@ -533,7 +533,7 @@ impl Renderer for HtmlHandlebars { debug!("Register handlebars helpers"); self.register_hbs_helpers(&mut handlebars, &html_config); - let mut data = make_data(&ctx.root, &book, &ctx.config, &html_config)?; + let mut data = make_data(&ctx.root, &book, &ctx.config, &html_config, &theme)?; // Print version let mut print_content = String::new(); @@ -606,6 +606,7 @@ fn make_data( book: &Book, config: &Config, html_config: &HtmlConfig, + theme: &Theme, ) -> Result> { trace!("make_data"); @@ -622,6 +623,12 @@ fn make_data( "description".to_owned(), json!(config.book.description.clone().unwrap_or_default()), ); + if theme.favicon_png.is_some() { + data.insert("favicon_png".to_owned(), json!("favicon.png")); + } + if theme.favicon_svg.is_some() { + data.insert("favicon_svg".to_owned(), json!("favicon.svg")); + } if let Some(ref livereload) = html_config.livereload_url { data.insert("livereload".to_owned(), json!(livereload)); } diff --git a/src/theme/index.hbs b/src/theme/index.hbs index 646f58f954..7051482961 100644 --- a/src/theme/index.hbs +++ b/src/theme/index.hbs @@ -20,8 +20,12 @@ + {{#if favicon_svg}} + {{/if}} + {{#if favicon_png}} + {{/if}}