75 lines
2.5 KiB
HTML
75 lines
2.5 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | For Dach.</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 | For Dach.</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>From Joy of Cooking '75, modified slightly</p>
|
|
<p><big>Quick (Cocoa) Banana Bread</big>
|
|
<strong>Two 8.5"x4.5" loaves</strong>
|
|
Preheat oven to 350° F.
|
|
Sift together:
|
|
<strong>3½ cups all purpose flour</strong>
|
|
<strong>4 teaspoons double-acting baking powder</strong>
|
|
<strong>1 teaspoon salt</strong>
|
|
<strong>2 tablespoons unsweetened powdered cocoa</strong>
|
|
Blend until creamy:
|
|
<strong>2/3 cup shortening</strong>
|
|
<strong>1 1/3 cups sugar</strong>
|
|
Beat in:
|
|
<strong>4 beaten eggs</strong>
|
|
<strong>2 cups ripe banana pulp (about one bunch of 5 or 6 bananas)</strong>
|
|
Add the sifted ingredients in about 3 parts to the sugar mixture. Beat the batter after each addition until smooth.
|
|
Fold in (optional):
|
|
<strong>(½ cup broken nutmeats)</strong>
|
|
<strong>(¼ cup chopped dried apricots)</strong>
|
|
Place the batter in greased bread pans. Bake the bread about 1 hour or until done. Cool before slicing</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2006-06-09 20:15:01</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>
|