2024-02-17 09:44:08 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2024-02-17 10:26:17 +01:00
|
|
|
<link rel="stylesheet" href="pico.min.css" />
|
2024-02-17 10:15:15 +01:00
|
|
|
<link rel="stylesheet" href="style.css" />
|
2024-02-17 09:44:08 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-02-17 10:15:15 +01:00
|
|
|
<div class="container">
|
2024-02-17 11:10:25 +01:00
|
|
|
<button onclick='const details = document.querySelector("details");details.setAttribute("open", "");'>Open all</button>
|
|
|
|
<button onclick='const details = document.querySelector("details");details.removeAttribute("open", "");'>Close all</button>
|
2024-02-17 10:15:15 +01:00
|
|
|
<h1>{{title}}</h1>
|
|
|
|
{{content}}
|
|
|
|
</div>
|
2024-02-17 09:44:08 +01:00
|
|
|
</body>
|
|
|
|
</html>
|