Template-Engine/example_templates/everything.n0m
2022-09-03 00:31:55 -06:00

15 lines
249 B
Plaintext

$ #!/bin/sh
$ title='My Website';
$ dangerous='<b>Unescaped</b>';
<!doctype html>
<html>
# This is a comment
<head>
<title><% $title %></title>
</head>
<body>
<h1>Welcome: <% $2 %></h1>
<p><!% $dangerous %></p>
</body>
</html>