html(lang="en")
head
title Hello World
body
h1 Pug
div(class="container")
h2 Hello #{name}
{
"name":"Mike"
}
<html lang="en">
<head>
<title>Hello World</title>
</head>
<body>
<h1>Pug</h1>
<div class="container">
<h2>Hello Mike</h2>
</div>
</body>
</html>