no-framework-tutorial/implementation/12-configuration/templates/hello.html

11 lines
187 B
HTML
Raw Normal View History

2022-03-29 18:35:06 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World</title>
</head>
<body>
<h1>Hello {{name}}</h1>
<p>The time is {{now}}</p>
</body>
</html>