<!DOCTYPE html>
<html lang="en">
<head>
<title>Pug</title>
<script type="text/javascript">
const foo = true;
let bar = function() {};
if (foo) {
bar(1 + 5)
}
</script>
</head>
<body>
<h1 (click)='angulay()'>Pug - node template engine</h1>
<a [routerLink]='link' [attr.title]='desc'>test with two attributes</a>
<div [class.mimimi]="test">asd
sdasd
<span>asd</span>
</div>
<div class="col" id="container">
<p *ngIf='amazing'>You are amazing</p>
<p>
Pug is a terse and simple
templating language with a
strong focus on performance
and powerful features.
</p>
</div>
<div><img src="{{itemImageUrl}}"></div>
<p>{{title}}</p>
</body>
</html>