59 lines
2.6 KiB
HTML
59 lines
2.6 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | I found a mushroom...</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 found a mushroom...</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>Just lying there, on the sidewalk. Then I looked around, and realized that the only thing within 20 feet that was actually alive was a rosebush. I was extraordinarily confused. I walked around a little, and eventually found a stand of mushrooms, but not the same kind by a long shot. I'm curious as to what the one I found is... I picked it up in a piece of plastic from my dry cleaning and wrapped it up in it in case it's poisonous. Two guesses so far as to the genus: Armillaria and Amanita. It's odd, I'll take a picture sometime. Wondering as to what the two stands I found in the grass are, now. One I'm pretty sure is the poisonous kind that grows in people's yards around here, but I dunno what the other is. Maybe a picture of that, too.</p>
|
|
<p>Odd, I just watched Mushroom Samba last night. o.O</p>
|
|
<p>Anyhoo, I took pictures of the house today for marketing, and now I'm at Caffe Sole waiting for the comforters to dry at the Laundromat.</p>
|
|
<p>Yipku</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2004-06-29 13:51:26</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>
|