57 lines
2.5 KiB
HTML
57 lines
2.5 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | Bah, semester</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 | Bah, semester</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>So, along with orchestrating Mirrors for Pierrot ensemble, my other major project for composition was <a href="http://www.furaffinity.net/view/2259174">Little Eclogue</a> (link to FA). It's a shitty rendering of a choral piece, and it's still only a rough draft, but I imagine once I get the pacing worked out and rewrite one or two parts, I'll be pretty proud of it. The text is an intriguing poetic dialog from one of my friends, whom I haven't seen in aaaaages.</p>
|
|
<p>And then there's <a href="http://www.furaffinity.net/view/2259189">this</a>. Ehehe c.c It's paced wrong, nearly impossible to play, a friggin' MIDI, and my teacher told me to not waste my time on it.. BUT GOD DAMNIT I DID! And it was fun :o) I may have to rewrite it for when CSU gets that crazy Vienna set up and turn it into an electronic-orchestra piece, but until then, I've got competitions to write for</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2009-05-06 07:20:46</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>
|