<?php
$page_name = "Bannock";
$menu_type = "food";
$menu_name = "Bannock";
$blog_num = 34;
$page_rate = 9;
$page_tags = array("outdoors");
$page_date = "October 2, 2011";
include_once("./files/head.php");

echo "<p>Bannock is nummy.  And really, really easy to make.  And light to carry.  But it really doesn't have that much nutritional value to it (it's basically only flour and water).</p>\n";
echo "<p>The history of bannock is the same as anything else that has existed since the dawn of time, everyone thinks differently.  The only things agreed on is:</p>\n";
echo "<ul>\n";
  echo "<li>Came to North America from Europeans.</li>\n";
  echo "<li>Has dozens of names, but N. A. calls it bannock.</li>\n";
  echo "<li>Flour, water, salt, and baking powder are almost always included.</li>\n";
echo "</ul>\n";

echo "<h3>Stuff to put in</h3>\n";
echo "<ul>\n";
  echo "<li>3 or 4 cups <span class=\"red\"><strong>flour</strong></span>&nbsp;&nbsp;&nbsp;<span class=\"green\"><strong>(highly precise recipe)</strong></span></li>\n";
  echo "<li>1 to 3 cups <span class=\"red\"><strong>water</strong></span>&nbsp;&nbsp;&nbsp;<span class=\"green\"><strong>(enough to make everything doughy, but not sticky or runny)</strong></span></li>\n";
  echo "<li>2 tbsp <span class=\"red\"><strong>baking soda</strong></span></li>\n";
  echo "<li>1 tsp <span class=\"red\"><strong>salt</strong></span>&nbsp;&nbsp;&nbsp;<span class=\"green\"><strong>(or a dash...)</strong></span></li>\n";
echo "</ul>\n";

echo "<h3>How to put it all together</h3>\n";
echo "<ol>\n";
  echo "<li>Mix <span class=\"red\"><strong>everything dry</strong></span> into a bag.</li>\n";
  echo "<li>When you're ready to cook, add <span class=\"red\"><strong>water</strong></span> until doughy, but not sticky or runny.</li>\n";
  echo "<li>Cook slowly (~10min) over even heat in any of the following ways:\n";
  echo "<ul>\n";
    echo "<li>Pita shaped in a frying pan.</li>\n";
    echo "<li>Pizza crust shaped in a frying pan.</li>\n";
    echo "<li>Bun shaped in an oven.</li>\n";
    echo "<li>Long rolls wrapped around a stick over the fire.</li>\n";
    echo "<li>Smokie shaped on a stick cooked over the fire.</li>\n";
    echo "<li>Deep-fried balls.</li>\n";
  echo "</ul>\n";
  echo "</li>\n";
echo "</ol>\n";

echo "<h3>Stuff to Add</h3>\n";
echo "<ul>\n";
  echo "<li>Raisins, craisins, chopped dried fruit</li>\n";
  echo "<li>Nuts, trail mix, chocolate, m&m's</li>\n";
  echo "<li>Fresh fruit, berries</li>\n";
  echo "<li>Honey, jam, peanut butter, butter, cream cheese, apple sause</li>\n";
echo "</ul>\n";

include_once("./files/close.php");

?>