94 lines
2.9 KiB
HTML
94 lines
2.9 KiB
HTML
<!doctype html>
|
||
<html>
|
||
<head>
|
||
<title>Zk | Remember this?</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 | Remember this?</h1>
|
||
</header>
|
||
<article class="content">
|
||
<p><strong>Feeling Fine</strong>
|
||
<details text="Lyricses"><summary>Lyricses</summary>
|
||
<em>Falling falling, feeling fine,
|
||
Finding forms and making mine.
|
||
Pressing pressing, pushing past,
|
||
Picking paths and falling fast.
|
||
Running running, rarely rest,
|
||
Run the risk and pass the test.
|
||
Do it all and feel fine.
|
||
Do it all and feel fine.</p>
|
||
<p>Feeling fine, feeling fine,
|
||
Done it all and feeling fine.
|
||
Mustn’t stop, mustn’t stop,
|
||
Done it all, I’m feeling fine.</p>
|
||
<p>Push on, push on, don’t slow up,
|
||
Push on, push on, push on past.
|
||
Run on, run on, don’t fuck up,
|
||
Run on, run on, run on fast.
|
||
Hurry on, scurry on, speed on up,
|
||
Hurry on, scurry on, don’t be last.
|
||
Do it all and feel fine.
|
||
Don’t forget to feel fine.</p>
|
||
<p>Feeling fine, feeling fine,
|
||
Done it all and feeling fine.
|
||
Mustn’t stop, mustn’t stop,
|
||
Done it all, I’m feeling fine.</p>
|
||
<p>Tried and tried, I tried and tried,
|
||
Ran the risk, failed the test.
|
||
Lied and lied, I lied and lied,
|
||
Picked my path and fell through fast.
|
||
Died and died, I died and died,
|
||
Found my form and made it last.</p>
|
||
<p>Feeling fine, feeling fine,
|
||
Done it all and feeling fine.
|
||
Mustn’t stop, mustn’t stop,
|
||
Done it all, I’m feeling fine.
|
||
Mustn’t stop, I’m feeling fine.</em></p>
|
||
<p></details>
|
||
I'll post something more meaningful later</p>
|
||
<span class="control">Expand all</span>
|
||
</article>
|
||
<footer>
|
||
<p>Page generated on 2004-02-20 18:04:12</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>
|