71 lines
2.3 KiB
HTML
71 lines
2.3 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | Arrangements</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 | Arrangements</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>Put together a list of songs that I wouldn't mind doing as vocal or choral arrangements. I wonder how hard it is to get permission to arrange a song :oP</p>
|
|
<ul>
|
|
<li> Noah Hall - Love and a gun </li>
|
|
<li> Mama Cass - Dream a little dream of me </li>
|
|
<li> Frank Sinatra - Wave </li>
|
|
<li> Doris Day - Perhaps, perhaps, perhaps </li>
|
|
<li> Fiona Apple - Extraordinary machine </li>
|
|
<li> Fiona Apple - Paper bag </li>
|
|
<li> Jefferson Airplane - White rabbit </li>
|
|
<li> The Zombies - She's not there </li>
|
|
<li> Marcy Playground - Cloak of Elven kind </li>
|
|
<li> The Cure - Close to me </li>
|
|
<li> Donnie Darko soundtrack - Mad world </li>
|
|
<li> Jeff Buckley - Halleluiah </li>
|
|
<li> Paul Simon - Diamonds on the soles of her shoes </li>
|
|
</ul
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2008-01-14 00:58:37</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>
|