update from sparkleup
This commit is contained in:
parent
112ea0f965
commit
8a0578999d
|
@ -0,0 +1,87 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Zk | I have a headache</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 | I have a headache</h1>
|
||||
</header>
|
||||
<article class="content">
|
||||
<p>Which is probably exacerbated by me forcing my brain to switch between QWERTY and Dvorak while trying to learn Dvorak and type QWERTY on a Dvorak keyboard. Kiran called about a math exam tomorrow. oh well. It has the added benefit of freaking out whoever looks at it.</p>
|
||||
<p>Greens covering my chest and shoulders warmly are happiness. Group tonight was particularly nice with Moondoggy. Wrote about gay stuff:
|
||||
<details text="Which Follows">
|
||||
<summary>
|
||||
Which Follows
|
||||
</summary>
|
||||
#1 They say I'm not normal period.</p>
|
||||
<p>This, of course is coming from the jocks, the preps, the Xtians, the punks,
|
||||
the losers, the winners, the teachers, the counselors, my friends, my enemies,
|
||||
the dogs, the cats, the tables. The chairs, too. They wonder why I can't
|
||||
just sit in them like a normal freaking person. Whatever. What they don't
|
||||
know is that I'm secretly happier than them. they might not know it by
|
||||
looking at me, since sometimes I look like I'm having a really rough time,
|
||||
but it's true. You see, one of the many keys to happiness is individuality,
|
||||
and you gotta have all the keys before you're really happy. Many people
|
||||
don't, and many of those seem to think they do. They think that statistics on
|
||||
suicides and self mutilation have everything to do with happiness among queer
|
||||
teens, when really, all they have to do with queer teens is statistics.
|
||||
Numbers that may or may not accurately represent the truth. I think that
|
||||
being abnormal, specifically being gay makes you happy. Maybe it isn't just a
|
||||
coincidence of words, maybe we really are gay.</p>
|
||||
<h1 id="4-queer-hair-queer-mouth-queer-brain">4 Queer hair, queer mouth, queer brain.</h1>
|
||||
<p>Queer hair, queer mouth, queer brain, queer sleeves, queer shoes, queer toes,
|
||||
queer nails, queer fingers, queer palms, hairy palms, queer wrists, limp
|
||||
wrists, queer arms, queer shoulders, arms around shoulders, queer neck,
|
||||
sensitive neck, queer hair, curly, queer ears, sensitive ears, eargasmic,
|
||||
queer cheek, blushing cheek, queer nose, got it from my dad, queer eyes, queer
|
||||
colors, got them from my grandpa, queer eyebrows, but not as queer as some,
|
||||
queer face, too long, queer chest, too skinny, queer belly, padded, queer
|
||||
crotch, go figure, queer thighs, better believe it, queer knees, queer calfs,
|
||||
queer ankles, queer legs, flexible, queer feet, still smell, queer guy, no
|
||||
surprise.
|
||||
</details</p>
|
||||
<span class="control">Expand all</span>
|
||||
</article>
|
||||
<footer>
|
||||
<p>Page generated on 2004-06-02 23:08:48</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>
|
Loading…
Reference in New Issue