controller에서 템플릿으로 변수 전달
export const home = (req, res) => res.render("home", { pageTitle: "Home" }); 컨트롤러에서 처음 전달하는 인자는 views 내에 있는 pug이고 두번째로 전달하는 인자는 변수이다. html(lang="en") head meta(charset="UTF-8") meta(name="viewport", content="width=device-width, initial-scale=1.0") title #{pageTitle} | #{siteName} link(rel="stylesheet", href="") body include ../partials/header main block contents include ../partials/footer 다음과 같..