https://pugjs.org/language/inheritance.html
doctype html
html(lang="ko")
head
title Wetube
body
h1 Base!
include partials/footer.pug
home.pug, watch.pug, edit.pug 내용 지우고 base를 확장(extends)하게 함
extends base.pug
extens를하면 모든 페이지의 내용이 base.pug로 됨, 이제 blcok을 사용
doctype html
html(lang="ko")
head
block head
body
block content
include partials/footer.pug
extends base.pug
block head
title Home | Wetube
block content
h1 Home!