14 lines
198 B
Handlebars
14 lines
198 B
Handlebars
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>{{title}}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{{> header}}
|
||
|
<p>{{screamIt welcomeMessage}}</p>
|
||
|
|
||
|
{{>footer}}
|
||
|
</body>
|
||
|
</html>
|