zk_html/lj-dump/L-1120.html

66 lines
2.4 KiB
HTML
Raw Normal View History

2020-04-23 20:45:09 +00:00
<!doctype html>
<html>
<head>
<title>Zk | Planning</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 | Planning</h1>
</header>
<article class="content">
<p>Got a couple of ideas in mind for NaNoWriMo, but I'm keeping those to myself :o)</p>
<p>Mainly, starting to plan for the Benefit Concert catering gig again. I'm thinking still making some fancy stuff, but maybe a little standard, instead of all the greek food I made last year. Compiling a list of fancy finger foods that I know Should still have a balance between sweet and savory..</p>
<p>(v = ovo-lactic vegetarian, V = vegan, GF = gluten free)
Sweet
- Applesauce cake/cupcakes (v)
- Scones (lavender-rosemary, spice, fruit; different kinds?) and lemon curd (v)
- Papaya/mango fruit leather as a container for julienned fruit, lime and mint sweet dressing. (V GF)</p>
<p>Savory
- Mini-bruschetta (v)
- Focaccia (V)
- Cherry/plum tomatoes as a container for quinoa, dressing made with the tomato seed juice, lemon, basil, and olive oil. (V GF</p>
<span class="control">Expand all</span>
</article>
<footer>
<p>Page generated on 2007-08-06 21:46:23</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>