-
Notifications
You must be signed in to change notification settings - Fork 184
/
blog.html
executable file
·47 lines (46 loc) · 2.36 KB
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700" media="all">
</head>
<body>
<header>
<div class="container">
<nav class="main-nav">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blog.html">Blog</a></li>
</ul>
</nav>
<h1><a href="/">Bakery<strong>Store</strong></a></h1>
</div>
</header>
<div class="content">
<div class="container">
<h2 class="spacing">Blog</h2>
<div class="blog-posts">
<div class="blog-post spacing">
<h3><a href="/post.html">Where did the chocolate chip cookie come from?</a></h3>
<p class="summary">Information<span class="date">January 02, 2016</span></p>
<p>The chocolate chip cookie was invented by Ruth Graves Wakefield. She owned the Toll House Inn, in Whitman, Massachusetts, a very popular restaurant that featured home cooking in the 1930s. Her cookbook, Toll House Tried and True Recipes, was first published in 1936 by M. Barrows & Company, New York. The 1938 edition of the cookbook was the first to include the recipe "Toll House Chocolate Crunch Cookie" which rapidly became a favorite cookie in American homes.</p>
<p>Source / Read more <a href="https://en.wikipedia.org/wiki/Chocolate_chip_cookie">Wikipedia</a>.</p>
</div>
<div class="blog-post spacing">
<h3><a href="/post.html">What is sour dough?</a></h3>
<p class="summary">Information<span class="date">January 01, 2016</span></p>
<p>Sourdough bread is made by the fermentation of dough using naturally-occurring lactobacilli and yeast. Sourdough bread has a mildly sour taste not present in most breads made with baker's yeast and better inherent keeping qualities than other breads, due to the lactic acid produced by the lactobacilli.</p>
<p>Source / Read more <a href="https://en.wikipedia.org/wiki/Sourdough">Wikipedia</a>.</p>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<p class="center-text"><a href="http://cloudcannon.com">Created by CloudCannon</a></p>
</div>
</footer>
</body>
</html>