zk_html/lj-dump/L-623.html

78 lines
3.5 KiB
HTML

<!doctype html>
<html>
<head>
<title>Zk | For Andreal and anyone else who wants it.</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 Andreal and anyone else who wants it.</h1>
</header>
<article class="content">
<p>Ranna's coffee bread</p>
<p>Makes two 9x5" loaves
Prep time: ~30 minutes
Cook time: ~40 minutes
Ready in: ~2 hrs 30 minutes.</p>
<p><strong>Ingredients:</strong>
1 cup warm water (~110F)
1 cup Toddy coffee concentrate or espresso (columbian bean recommended, <em>arabica</em> bean required)
2/3 - 3/4 cups white sugar
1 packet active dry yeast (2 packets would hasten the yeast working process)
1 1/2 teaspoons salt
1/4 cup vegetable oil
6 cups bread flour
optional chocolate syrup to taste</p>
<p><strong>Directions:</strong>
<ol>
<li>In a large bowl, disolve sugar in warm water. Stir in the yeast and let it work to a creamy foam.</li>
<li>Mix in coffee, salt, and oil. Mix in flour one cup at a time, then knead the dough on a lightly floured surface until smooth.</li>
<li>Place dough in a well oiled bowl and turn the dough to coat. Cover with a damp cloth and allow to rise until doubled in bulk, about 1 hour.</li>
<li>Punch dough down, knead for a few minutes, and divide in half. Shape into loaves and place into two well oiled 9x5 loaf tins. Allow to rise for 30 minutes or until the dough has risen 1 inch above the tops of the pans.</li>
<li>Meanwhile, prepare a glaze of 1 tablespoon vegetable oil, 1 teaspoon vanilla extract, and 1/8 cup coffee concentrate or espresso.</li>
<li>Baste top of loaves with the glaze and bake at 350 F for 30 minutes or until the bread is dark brown, periodically adding glaze to taste.</li></ol></p>
<p>Since I based this off a recipe for sea level, I'm still trying to find the right amount of time for high altitude cooking. I've found that I can check the progress of the bread by straightening out a paper clip, poking it down through the center of the baking loaf and lifting up some of the inside to see if it's doughy or not. The paper clip leaves a low enough profile hole that it's hardly noticeable when done</p>
<span class="control">Expand all</span>
</article>
<footer>
<p>Page generated on 2005-09-19 21:26:06</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>