15 lines
249 B
Plaintext
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>
|