Is there a YAML solution like this one on SO for putting an image next to a page title in distill (blog)?
I tried this strategy in index.Rmd but the image code rendered as text.
index.Rmd
--- title: " <img src=\"images/logo.png\" style=\"float: left;\"/> Blog" site: distill::distill_website listing: posts ---
If YAML does not work, is there a better approach?
The closest I've come is:
--- title: "" site: distill::distill_website listing: posts --- <br> ```{r, fig.align='center', out.width='20%'} knitr::include_graphics("images/logo.png") ```
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.