# render homepage
render_home <- function(req, res){
res$render(
"templates/home.html",
list(
title = "Hello from R",
subtitle = "This is rendered with {glue}"
)
)
}
# 404: not found
render_404 <- function(req, res){
res$send_file("404.html", status = 404L)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.