mirror of
https://github.com/sigmasternchen/shochu
synced 2025-03-15 07:38:55 +00:00
14 lines
197 B
Text
14 lines
197 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>
|