zk_html/stream.html

68 lines
2.2 KiB
HTML

<!doctype html>
<html>
<head>
<title>Zk | stream</title>
<link rel="stylesheet" type="text/css" href="/style.css" />
<meta name="viewport" content="width=device-width" />
<meta charset="utf-8" />
</head>
<body>
<main>
<header>
<h1>Zk | stream</h1>
</header>
<article class="content">
<h1 id="stream-notes">Stream notes</h1>
<p>Welcome to the writing stream! I'll be trying to keep a list of what all I'm doing here below. If you're interested in getting access to such not mediated through a screen, you can always check me out on Patreon at Patreon.com/Makyo - I have non-Patreon options available as well!</p>
<ul>
<li class="done0"> Mic</li>
<li class="done0"> Camera</li>
<li class="done4"> Music: postrock</li>
<li class="done4"> Tea interruptions</li>
<li class="done4"> Editing - Qoheleth</li>
<li>[?] Multistream</li>
</ul>
<!--
vim: nospell
-->
<span class="control">Expand all</span>
</article>
<footer>
<p>Page generated on 2020-04-20</p>
</footer>
</main>
<script type="text/javascript">
document.querySelectorAll('li').forEach(el => {
if (el.querySelectorAll('li').length !== 0) {
el.classList.add('has-nested', 'closed');
el.innerHTML = `<span class="toggle"></span> ${el.innerHTML}`;
}
});
document.querySelectorAll('.toc .has-nested').forEach(el => {
el.classList.remove('has-nested', 'closed');
});
document.querySelectorAll('li.has-nested').forEach(el => {
el.querySelector('.toggle').addEventListener('click', () => {
el.classList.toggle('closed');
});
});
let expanded = false;
document.querySelector('.control').addEventListener('click', (e) => {
expanded = !expanded;
if (expanded) {
e.target.innerText = 'Collapse all';
} else {
e.target.innerText = 'Expand all';
}
document.querySelectorAll('.has-nested').forEach((el) => {
if (expanded) {
el.classList.remove('closed');
} else {
el.classList.add('closed')
}
});
});
</script>
</body>
</html>