65 lines
2.6 KiB
HTML
65 lines
2.6 KiB
HTML
<!doctype html>
|
||
<html>
|
||
<head>
|
||
<title>Zk | Tag'd!</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 | Tag'd!</h1>
|
||
</header>
|
||
<article class="content">
|
||
<p>Once tagged by this entry, the assignment is to write a blog entry of some kind with six random facts about yourself. Then, pick six of yourfriends and tag them; no tag backs. This explanation should be includedwith it.</p>
|
||
<ol>
|
||
<li>Despite what some would have you think, I'm actually God Emperor of Colorado. And parts of New Mexico. My skin is not my own.</li>
|
||
<li>I'm a bit of a masochist. Okay. More than a bit.</li>
|
||
<li>Along with 2, I'm very submissive, but being a control FREAK forces me into a dominant personality. It's an uncomfortable fit. My skin is not my own.</li>
|
||
<li>I don't see myself living past 40, settling down with anyone, or ever owning a speedboat.</li>
|
||
<li>I sometimes feel like I'm not the only one inside my head. Not that thoughts aren't my own, but that I simply have a timeshare on processing space. My skin is not my own.
|
||
6. My second greatest fear is living beyond my means.</li>
|
||
</ol>
|
||
<p>I tag: ironmonkey989, shanerak, marthab19, mousit, shadecheetah, jimfoxyboy</p>
|
||
<span class="control">Expand all</span>
|
||
</article>
|
||
<footer>
|
||
<p>Page generated on 2006-12-10 23:48:28</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>
|