21 lines
363 B
Go Template
21 lines
363 B
Go Template
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Lishwist</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script>
|
|
function someChecked(checkList) {
|
|
if (!checkList) {
|
|
return
|
|
}
|
|
return Array.from(checkList).some(({checked}) => checked);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
{{template "body" .}}
|
|
</body>
|
|
|
|
</html> |