[home.pug]
doctype html
html(lang="ko")
head
title Wetube
body
h1 Welcome to Wetube
footer © 2021 Wetube
================
export const trending = (req, res) => res.render("home");
app.set("view engine", "pug");
app.set("views", process.cwd() + "/src/views");
doctype html
html(lang="ko")
head
title Wetube
body
h1 Watch Video!
footer © #{new Date().getFullYear()} Wetube
[footer.pug]
footer © #{new Date().getFullYear()} Wetube
=====================
[watch.pug]
~~
include partials/footer.pug
[base.pug]
doctype html
html(lang="ko")
head
block head
body
block content
include partials/footer.pug
=============================
[home.pug]
extends base.pug
block head
title Home | Wetube
block content
h1 Home!
[base.pug]
head
title #{pageTitle} | Wetube
=================
[videoController.js]
export const trending = (req, res) => res.render("home", { pageTitle: "Home" });
head
link(rel="stylesheet" href="https://unpkg.com/mvp.css")
ch6. mongoDB & Mongoose (0) | 2022.08.16 |
---|---|
ch5.7~ conditionals, iteration, mixins (0) | 2022.08.16 |
ch4. Routers (0) | 2022.08.11 |
ch3. express intro (0) | 2022.08.09 |
1. intro & 2. SET UP (0) | 2022.08.08 |
댓글 영역