59 lines
2.8 KiB
HTML
59 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | ...</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 | ...</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>So for Christmas, my dad got my step-mom a divorce, told her he hasn't loved her in five years (cuts their marriage down to 12 years instead of 17), called her a "good little housemaid" (uh...), and turned her into an alcoholic (she passed out after the family gathering tonight). For himself, he got a new apartment, leather furniture, a flat screen TV, and a plane ticket to Michigan to visit his long-distance squeeze.</p>
|
|
<p>I got an alarm clock. You know, to add to my collection. Instead of the tripod, two flashes, and slaver unit he told me he was getting me. I guess I can just balance my camera on top of that.</p>
|
|
<p>I got myself some honesty and would like to let certain folk know that I'm so terrified of this happening to me, that I won't let myself stay relax in any sort of relationship, and feel uncomfortable when things actually work out for more than a few months. If they don't work out, I'm so afraid to say so that I screw things up worse in the end. Sorry if I've hurt anyone.</p>
|
|
<p>I'm also giving myself the server that's been sitting in my room at my dad's (old) house for the past four years, the mah-jong set he got me when I was 13 or so, all of my books, games, skis, the guitar, some cookware..</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2006-12-25 05:40:40</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>
|