shinden/example.templ
2022-01-06 19:59:41 +01:00

13 lines
236 B
Text

<!DOCTYPE html>
<html>
<head>
<title>{{ print "$title" }}</title>
</head>
<body>
<ul>
{{ for user in "${users[@]}"; do }}
<li>{{ print "$user" }}</li>
{{ done }}
</ul>
</body>
</html>