Files
py-enjoy/templates/index.html
2026-02-28 11:17:02 +08:00

29 lines
338 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
#(name)
<hr>
#for(i : hobbies)
#(i)
#end
<hr>
#for(i : scores)
#(i)
#end
<hr>
#for(i : user)
#(i.key) #(i.value)
#end
</body>
</html>