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

13 lines
222 B
Plaintext

$ #!/bin/sh
<!doctype html>
<html>
<head><title>Restaurants</title></head>
<body>
<ul>
$ while read restaurant; do
<li><% $restaurant %></li>
$ done <restaurants.txt
</ul>
</body>
</html>