hangry 0.0.12 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. data/README.md +1 -0
  2. data/lib/hangry.rb +1 -0
  3. data/lib/hangry/data_vocabulary_recipe_parser.rb +4 -0
  4. data/lib/hangry/hrecipe_parser.rb +20 -6
  5. data/lib/hangry/recipe_parser.rb +3 -1
  6. data/lib/hangry/schema_org_recipe_parser.rb +4 -0
  7. data/lib/hangry/version.rb +1 -1
  8. data/spec/fixtures/{bbc.co.uk.html → hrecipe/bbc.co.uk.html} +0 -0
  9. data/spec/fixtures/{bigoven.html → hrecipe/bigoven.html} +0 -0
  10. data/spec/fixtures/hrecipe/campbellskitchen.com.html +1970 -0
  11. data/spec/fixtures/{cooking.com.html → hrecipe/cooking.com.html} +0 -0
  12. data/spec/fixtures/{cooks.com.html → hrecipe/cooks.com.html} +0 -0
  13. data/spec/fixtures/hrecipe/drinksmixer.com.html +604 -0
  14. data/spec/fixtures/{epicurious.html → hrecipe/epicurious.html} +0 -0
  15. data/spec/fixtures/hrecipe/grouprecipes.com.html +982 -0
  16. data/spec/fixtures/hrecipe/homecooking.about.com.html +326 -0
  17. data/spec/fixtures/hrecipe/jamieoliver.com.html +868 -0
  18. data/spec/fixtures/hrecipe/mrfood.com.html +4642 -0
  19. data/spec/fixtures/hrecipe/southernfood.about.com.html +328 -0
  20. data/spec/fixtures/{tasteofhome.com.html → hrecipe/tasteofhome.com.html} +0 -0
  21. data/spec/fixtures/{allrecipes.html → schema_org/allrecipes.html} +0 -0
  22. data/spec/fixtures/{betty_crocker.html → schema_org/betty_crocker.html} +0 -0
  23. data/spec/fixtures/{copykat.com.html → schema_org/copykat.com.html} +0 -0
  24. data/spec/fixtures/{chow.com.html → schema_org/data-vocabulary_org/chow.com.html} +0 -0
  25. data/spec/fixtures/{myrecipes.com.html → schema_org/data-vocabulary_org/myrecipes.com.html} +0 -0
  26. data/spec/fixtures/{saveur.com.html → schema_org/data-vocabulary_org/saveur.com.html} +0 -0
  27. data/spec/fixtures/{tarladalal.com.html → schema_org/data-vocabulary_org/tarladalal.com.html} +0 -0
  28. data/spec/fixtures/{taste.com.au.html → schema_org/data-vocabulary_org/taste.com.au.html} +0 -0
  29. data/spec/fixtures/{eatingwell.com.html → schema_org/eatingwell.com.html} +0 -0
  30. data/spec/fixtures/{food.com.html → schema_org/food.com.html} +0 -0
  31. data/spec/fixtures/{food_network_schema_org.html → schema_org/food_network_schema_org.html} +0 -0
  32. data/spec/fixtures/{food_network_with_blank_ingredients.html → schema_org/food_network_with_blank_ingredients.html} +0 -0
  33. data/spec/fixtures/{foodandwine.com.html → schema_org/foodandwine.com.html} +0 -0
  34. data/spec/fixtures/{heart.org.html → schema_org/heart.org.html} +0 -0
  35. data/spec/fixtures/{pillsbury.com.html → schema_org/pillsbury.com.html} +0 -0
  36. data/spec/hangry_spec.rb +1 -0
  37. data/spec/real_examples/{bbc_co_uk_spec.rb → hrecipe/bbc_co_uk_spec.rb} +2 -1
  38. data/spec/real_examples/{big_oven_spec.rb → hrecipe/big_oven_spec.rb} +2 -1
  39. data/spec/real_examples/hrecipe/campbells_kitchen_com_spec.rb +63 -0
  40. data/spec/real_examples/{cooking_com_spec.rb → hrecipe/cooking_com_spec.rb} +3 -2
  41. data/spec/real_examples/{cooks_com_spec.rb → hrecipe/cooks_com_spec.rb} +2 -1
  42. data/spec/real_examples/hrecipe/drinks_mixer_com_spec.rb +57 -0
  43. data/spec/real_examples/{epicurious_spec.rb → hrecipe/epicurious_spec.rb} +2 -1
  44. data/spec/real_examples/hrecipe/group_recipes_com_spec.rb +65 -0
  45. data/spec/real_examples/hrecipe/home_cooking_food_com_spec.rb +79 -0
  46. data/spec/real_examples/hrecipe/jamie_oliver_com_spec.rb +61 -0
  47. data/spec/real_examples/hrecipe/mr_food_com_spec.rb +55 -0
  48. data/spec/real_examples/hrecipe/southern_food_about_com_spec.rb +64 -0
  49. data/spec/real_examples/{taste_of_home_spec.rb → hrecipe/taste_of_home_spec.rb} +4 -3
  50. data/spec/real_examples/{all_recipes_spec.rb → schema_org/all_recipes_spec.rb} +2 -1
  51. data/spec/real_examples/{betty_crocker_spec.rb → schema_org/betty_crocker_spec.rb} +2 -1
  52. data/spec/real_examples/{copykat_spec.rb → schema_org/copykat_spec.rb} +2 -1
  53. data/spec/real_examples/{chow_com_spec.rb → schema_org/data-vocabulary_org/chow_com_spec.rb} +2 -1
  54. data/spec/real_examples/{myrecipes_com_spec.rb → schema_org/data-vocabulary_org/myrecipes_com_spec.rb} +2 -1
  55. data/spec/real_examples/{saveur_com_spec.rb → schema_org/data-vocabulary_org/saveur_com_spec.rb} +2 -1
  56. data/spec/real_examples/{tarladalal_com_spec.rb → schema_org/data-vocabulary_org/tarladalal_com_spec.rb} +2 -1
  57. data/spec/real_examples/{taste_com_au_spec.rb → schema_org/data-vocabulary_org/taste_com_au_spec.rb} +2 -1
  58. data/spec/real_examples/{eating_well_spec.rb → schema_org/eating_well_spec.rb} +3 -2
  59. data/spec/real_examples/{food_and_wine_spec.rb → schema_org/food_and_wine_spec.rb} +2 -1
  60. data/spec/real_examples/{food_com_spec.rb → schema_org/food_com_spec.rb} +2 -1
  61. data/spec/real_examples/{food_network_spec.rb → schema_org/food_network_spec.rb} +4 -2
  62. data/spec/real_examples/{heart_org_spec.rb → schema_org/heart_org_spec.rb} +2 -1
  63. data/spec/real_examples/{pillsbury_spec.rb → schema_org/pillsbury_spec.rb} +2 -1
  64. metadata +124 -96
@@ -0,0 +1,982 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
3
+ <head>
4
+ <title>Deep Dark Chocolate Cheesecake Recipe</title>
5
+ <meta name="description" content="Definitely NOT a diet dessert - but a winner for my mom's birthday party! With 24 oz of cream cheese, a cup of mascarpone and 10 oz of bittersweet couverture chocolate you can definitely count me in!" />
6
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
7
+ <link rel="icon" href="/images/_site/g.ico"/>
8
+ <link href="http://s0.grouprecipes.com/css/v1363111326/base.css" rel="stylesheet" type="text/css" />
9
+ <!--[if IE]>
10
+ <link rel="stylesheet" type="text/css" href="/css/v1280691903/ie.css" />
11
+ <![endif]-->
12
+ <!--[if IE 7]>
13
+ <link rel="stylesheet" type="text/css" href="/css/v1281622333/ie7.css" />
14
+ <![endif]-->
15
+ <script type="text/javascript">
16
+ var _gaq = _gaq || [];
17
+ _gaq.push(['_setAccount', 'UA-17064819-1']);
18
+ _gaq.push(['_trackPageview']);
19
+
20
+ (function() {
21
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
22
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
23
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
24
+ })();
25
+
26
+ </script>
27
+ <script type='text/javascript'>
28
+ var googletag = googletag || {};
29
+ googletag.cmd = googletag.cmd || [];
30
+ (function() {
31
+ var gads = document.createElement('script');
32
+ gads.async = true;
33
+ gads.type = 'text/javascript';
34
+ var useSSL = 'https:' == document.location.protocol;
35
+ gads.src = (useSSL ? 'https:' : 'http:') +
36
+ '//www.googletagservices.com/tag/js/gpt.js';
37
+ var node = document.getElementsByTagName('script')[0];
38
+ node.parentNode.insertBefore(gads, node);
39
+ })();
40
+ </script>
41
+ <script type='text/javascript'>
42
+ googletag.cmd.push(function() {
43
+ googletag.pubads().setTargeting("site", "grouprecipes");
44
+
45
+ googletag.pubads().setTargeting("ch", "mg");
46
+
47
+ // 728x90 placemnts with options
48
+ googletag.defineSlot('/8352/a.grouprecipes', [[728, 90], [970, 66], [970, 90], [970, 250]], 'adtag-leaderboard-2').addService(googletag.pubads()).setTargeting("pos", "atf");
49
+
50
+
51
+ // 300x250 placements with options
52
+ googletag.defineSlot('/8352/a.grouprecipes', [[300, 250], [300, 600], [300, 1050]], 'adtag-mediumrectangle-3').addService(googletag.pubads()).setTargeting("pos", "btf");
53
+
54
+ // 160x600 placements
55
+ googletag.defineSlot('/8352/a.grouprecipes', [[160, 600]], 'adtag-skyscraper-1').addService(googletag.pubads()).setTargeting("pos", "btf");
56
+
57
+ googletag.pubads().collapseEmptyDivs();
58
+ googletag.pubads().enableSingleRequest();
59
+ googletag.pubads().enableAsyncRendering();
60
+ googletag.enableServices();
61
+ });
62
+ </script>
63
+ </head>
64
+ <body id="recipe" class="hrecipe">
65
+ <!-- Ad Header -->
66
+ <div id="ad_header" class="leaderboard_stable">
67
+ <div class="ad">
68
+ <!-- a.grouprecipes adtag-leaderboard-2 -->
69
+ <div id='adtag-leaderboard-2'>
70
+ <script type='text/javascript'>
71
+ googletag.cmd.push(function() { googletag.display('adtag-leaderboard-2'); });
72
+ </script>
73
+ </div>
74
+ </div>
75
+ </div>
76
+ <!-- Header -->
77
+ <div id="body_wrap">
78
+ <div id="header">
79
+ <a class="home" href="/" title="To the Homepage!"></a>
80
+ <ul id="nav">
81
+ <li class="home"><a href="/"></a></li>
82
+ <li class="recipes">
83
+ <a href="#"></a>
84
+ <div id="subnav">
85
+ <var class="r"></var>
86
+ <var class="b"></var>
87
+ <div>
88
+ <ul>
89
+ <li><a href="/directory">Categories</a></li>
90
+ <li><a href="/search">Search</a></li>
91
+ <li><a href="/bookmarks">Your Bookmarks</a></li>
92
+ <li class="menu_divider"></li>
93
+ <li><a href="/upload">Upload a Recipe</a></li>
94
+ </ul>
95
+ </div>
96
+ </div>
97
+ </li>
98
+ <li class="people"><a href="/people"></a></li>
99
+ <li class="groups"><a href="/groups"></a></li>
100
+ </ul>
101
+ <div id="header_login">
102
+ <span>
103
+ <a href="/join" class="signup">Join</a>
104
+ <em><a class="login" href="/login">Login</a></em>
105
+ </span>
106
+ </div>
107
+ <form id="header_search" action="/search" method="post">
108
+ <span><input type="text" name="keywords" autocomplete="off" /></span>
109
+ <em></em>
110
+ <input type="hidden" name="search_what" value="all" />
111
+ </form>
112
+ <div class="bubble">
113
+ <span><a href="http://www.grouprecipes.com/135868/raspberry-compote.html">Raspberry Compote</a> 6 hours ago ...</span>
114
+ </div>
115
+ </div>
116
+ <!-- Body wrap closed in Footer() -->
117
+ <dl id="pop_inspiration" class="pop_inline open">
118
+ <dd>
119
+ <div class="wrap">
120
+ <h6>Search Inspiration</h6>
121
+ <p class="desc">No idea what to search for? Start browsing till you find something.</p>
122
+ <ul class="ideas tags">
123
+ <li><a href="http://www.grouprecipes.com/pineapple-casserole">pineapple casserole recipe</a></li>
124
+ <li><a href="http://www.grouprecipes.com/barley-stew">barley stew recipe</a></li>
125
+ <li><a href="http://www.grouprecipes.com/mexican-salsa">mexican salsa</a></li>
126
+ <li><a href="http://www.grouprecipes.com/lemon-chiffon-cake">lemon chiffon cake</a></li>
127
+ <li><a href="http://www.grouprecipes.com/japanese-desserts-sugar">japanese desserts sugar</a></li>
128
+ <li><a href="http://www.grouprecipes.com/swans-down-cake-flour">swans down cake flour</a></li>
129
+ <li><a href="http://www.grouprecipes.com/cheeseclothe">cheeseclothe</a></li>
130
+ <li><a href="http://www.grouprecipes.com/chicken-wine-onion-soup">recipes chicken wine onion soup</a></li>
131
+ <li><a href="http://www.grouprecipes.com/laura-glass-trifle-bowl">laura glass trifle bowl</a></li>
132
+ </ul>
133
+ </div>
134
+ <var class="tr"></var>
135
+ <var class="bl"></var>
136
+ </dd>
137
+ </dl>
138
+ <div id="content">
139
+ <div class="breadcrumb">
140
+ <a href="/">Home</a> <a href="/directory">Recipes</a>
141
+ <h1 class="fn">Deep Dark Chocolate Cheesecake Recipe</h1>
142
+ </div>
143
+ <div id="head">
144
+ <!-- Title -->
145
+ <p class="replaced" title="Deep Dark Chocolate Cheesecake">Deep Dark Chocolate Cheesecake</p>
146
+ <!-- Uploader -->
147
+ <small class="from">From
148
+ <a href="/people/jo_jo_ba">jo_jo_ba</a>
149
+ 6 hours ago
150
+ </small>
151
+ <!-- Metadata -->
152
+ <div class="meta">
153
+ <!-- Photo -->
154
+ <div class="photos">
155
+ <a href="#"><img class="zoom photo" src="http://s1.grouprecipes.com/images/recipes/200/05383996f195c3c350a844fe062ef66a.jpg" alt="" /></a>
156
+ <ul>
157
+ <li class="add txtlink"><a class="pop" rel="photo" href="#">Add yours</a></li>
158
+ </ul>
159
+ <dl id="pop_photo" class="pop_inline">
160
+ <dd>
161
+ <var class="tr"></var>
162
+ <var class="bl"></var>
163
+ <div class="wrap">
164
+ <form action="" method="post" enctype="multipart/form-data">
165
+ <fieldset class="inline file small">
166
+ <label>Pick your photo</label>
167
+ <input class="file_clear" type="file" name="photo" />
168
+ <input class="file_visible" type="text" readonly="true" />
169
+ <a class="button file_btn on_field" href="javascript:;"><span>Browse...</span></a>
170
+ </fieldset>
171
+ <fieldset>
172
+ <label>Caption <em>optional</em></label>
173
+ <textarea name="caption"></textarea>
174
+ </fieldset>
175
+ <fieldset class="actions alt">
176
+ <a class="button upload_photo" href="#"><span>Upload Photo</span></a>
177
+ <strong>or <a class="cancel_photo" href="#">cancel</a></strong>
178
+ </fieldset>
179
+ </form>
180
+ </div>
181
+ </dd>
182
+ </dl>
183
+ </div>
184
+ <!-- Details -->
185
+ <div class="details">
186
+ <ul class="time">
187
+ <li class="time">
188
+ <strong class="cooktime">1 day
189
+ </strong> to make
190
+ </li>
191
+ <li class="vr"></li>
192
+ <li class="servings">Serves <strong>16</strong></li>
193
+ </ul>
194
+ <!-- Intro -->
195
+ <p>
196
+ Definitely NOT a diet dessert - but a winner for my mom's birthday party! With 24 oz of cream cheese, a cup of mascarpone and 10 oz of bittersweet couverture chocolate you can definitely count me in!
197
+ </p>
198
+ <!-- Tags -->
199
+ <ul class="tags_text">
200
+ <li><strong>chocolate</strong></li>
201
+ <li><strong>bittersweet</strong></li>
202
+ <li><strong>rich</strong></li>
203
+ <li><strong>indulgent</strong></li>
204
+ <li><strong>bitter</strong></li>
205
+ <li><strong>sweet</strong></li>
206
+ <li><strong>chocolate cheesecake</strong></li>
207
+ <li><strong>cocoa</strong></li>
208
+ <li><strong>chocolate crust</strong></li>
209
+ <li><strong>cookie</strong></li>
210
+ <li><strong>smooth</strong></li>
211
+ <li><strong>creamy</strong></li>
212
+ <li><strong>mascarpone</strong></li>
213
+ <li><strong>cream cheese</strong></li>
214
+ <li><strong>eggs</strong></li>
215
+ <li><strong>cornstarch</strong></li>
216
+ <li><strong>celebration</strong></li>
217
+ <li><strong>sour cream</strong></li>
218
+ <li><strong>bake</strong></li>
219
+ <li><strong>nothing specific</strong></li>
220
+ </ul>
221
+ <!-- Toolbar -->
222
+ <div class="toolbar">
223
+ <span class="hr"></span>
224
+ <ul>
225
+ <!-- Bookmark -->
226
+ <li class="save" title="Bookmark this for later">
227
+ <a id="save" class="pop" rel="save" href="#"><span></span>save</a>
228
+ <dl id="pop_save" class="pop_inline">
229
+ <dd>
230
+ <var class="tr"></var>
231
+ <var class="bl"></var>
232
+ <div class="wrap">
233
+ <fieldset class="inline small">
234
+ <label>Add tags (comma separated) to categorize your bookmark.</label>
235
+ <input id="bookmark_tags" class="tagfield" name="tags" type="text" value="" />
236
+ <a id="save_btn" class="button on_field" href="#"><span>Save</span></a>
237
+ </fieldset>
238
+ <label class="tags">Feel free to use any of the below tags. Click one to add it.</label>
239
+ <ul id="tag_list" class="round_tags holder">
240
+ <li class="tag">chocolate</li>
241
+ <li class="tag">bittersweet</li>
242
+ <li class="tag">rich</li>
243
+ <li class="tag">indulgent</li>
244
+ <li class="tag">bitter</li>
245
+ <li class="tag">sweet</li>
246
+ <li class="tag">chocolate cheesecake</li>
247
+ <li class="tag">cocoa</li>
248
+ <li class="tag">chocolate crust</li>
249
+ <li class="tag">cookie</li>
250
+ <li class="tag">smooth</li>
251
+ <li class="tag">creamy</li>
252
+ <li class="tag">mascarpone</li>
253
+ <li class="tag">cream cheese</li>
254
+ <li class="tag">eggs</li>
255
+ <li class="tag">cornstarch</li>
256
+ <li class="tag">celebration</li>
257
+ <li class="tag">sour cream</li>
258
+ <li class="tag">bake</li>
259
+ <li class="tag">nothing specific</li>
260
+ </ul>
261
+ </div>
262
+ </dd>
263
+ </dl>
264
+ </li>
265
+ <!-- Add to Planner -->
266
+ <li class="planner" title="Add to your meal planner">
267
+ <a href="#" class="pop" rel="planner"><span></span>planner</a>
268
+ <dl id="pop_planner" class="pop_inline">
269
+ <dd>
270
+ <var class="tr"></var>
271
+ <var class="bl"></var>
272
+ <div class="wrap">
273
+ <label>Add this recipe to your weekly planner</label>
274
+ <ul class="days" title="Deep Dark Chocolate Cheesecake">
275
+ <li>
276
+ <a class=""
277
+ rel="4" href="#">
278
+ Thu </a>
279
+ </li>
280
+ <li>
281
+ <a class=""
282
+ rel="5" href="#">
283
+ Fri </a>
284
+ </li>
285
+ <li>
286
+ <a class=""
287
+ rel="6" href="#">
288
+ Sat </a>
289
+ </li>
290
+ <li>
291
+ <a class=""
292
+ rel="7" href="#">
293
+ Sun </a>
294
+ </li>
295
+ <li>
296
+ <a class=""
297
+ rel="1" href="#">
298
+ Mon </a>
299
+ </li>
300
+ <li>
301
+ <a class=""
302
+ rel="2" href="#">
303
+ Tue </a>
304
+ </li>
305
+ <li>
306
+ <a class=""
307
+ rel="3" href="#">
308
+ Wed </a>
309
+ </li>
310
+ </ul>
311
+ <p class="desc">Schedule your weekly meals and get auto-generated shopping lists.</p>
312
+ <span class="option">or <a href="/planner?add=135867">go to planner</a></span>
313
+ </div>
314
+ </dd>
315
+ </dl>
316
+ </li>
317
+ <!-- Print -->
318
+ <li class="print" title="Print this recipe">
319
+ <a href="http://www.grouprecipes.com/135867/deep-dark-chocolate-cheesecake.html/print"><span></span>print</a>
320
+ </li>
321
+ <!-- Email -->
322
+ <li class="email" title="Email this recipe">
323
+ <a id="email_link" href="#email" class="pop" rel="email"><span></span>email</a>
324
+ <dl id="pop_email" class="pop_inline">
325
+ <dd>
326
+ <var class="tr"></var>
327
+ <var class="bl"></var>
328
+ <div class="wrap">
329
+ <fieldset class="inline small">
330
+ <label>Email to</label>
331
+ <input id="email" name="email" />
332
+ <a id="send_email" class="button on_field" href="#"><span>Send</span></a>
333
+ </fieldset>
334
+ </div>
335
+ </dd>
336
+ </dl>
337
+ </li>
338
+ <!-- Add to Shopping List -->
339
+ <li class="list" title="Add items to shopping list">
340
+ <a class="pop" rel="list" href="#"><span></span>groc. list</a>
341
+ <dl id="pop_list" class="pop_inline">
342
+ <dd>
343
+ <var class="tr"></var>
344
+ <var class="bl"></var>
345
+ <div class="wrap">
346
+ <label>Add items to your shopping list</label>
347
+ <ul class="slist">
348
+ <li class="">
349
+ <a class="chkbox to_list " title="Add to shopping list" rel="1 ¾ cups chocolate wafer cookie crumbs (about 5.5 oz)" href="#"></a>
350
+ <span>1 ¾ cups chocolate wafer cookie crumbs (about 5.5 oz)</span>
351
+ </li>
352
+ <li class="">
353
+ <a class="chkbox to_list " title="Add to shopping list" rel="3 tbsp orange juice" href="#"></a>
354
+ <span>3 tbsp orange juice</span>
355
+ </li>
356
+ <li class="">
357
+ <a class="chkbox to_list " title="Add to shopping list" rel="3 tbsp melted butter" href="#"></a>
358
+ <span>3 tbsp melted butter</span>
359
+ </li>
360
+ <li class="">
361
+ <a class="chkbox to_list " title="Add to shopping list" rel="10 oz bittersweet chocolate (at least 70%, preferably couverture), chopped" href="#"></a>
362
+ <span>10 oz bittersweet chocolate (at least 70%, preferably couverture), chopped</span>
363
+ </li>
364
+ <li class="">
365
+ <a class="chkbox to_list " title="Add to shopping list" rel="24 oz cream cheese, room temperature" href="#"></a>
366
+ <span>24 oz cream cheese, room temperature</span>
367
+ </li>
368
+ <li class="">
369
+ <a class="chkbox to_list " title="Add to shopping list" rel="8 oz mascarpone cheese, room temperature" href="#"></a>
370
+ <span>8 oz mascarpone cheese, room temperature</span>
371
+ </li>
372
+ <li class="">
373
+ <a class="chkbox to_list " title="Add to shopping list" rel="2 tbsp sour cream" href="#"></a>
374
+ <span>2 tbsp sour cream</span>
375
+ </li>
376
+ <li class="">
377
+ <a class="chkbox to_list " title="Add to shopping list" rel="1 cup brown sugar" href="#"></a>
378
+ <span>1 cup brown sugar</span>
379
+ </li>
380
+ <li class="">
381
+ <a class="chkbox to_list " title="Add to shopping list" rel="¼ cup unsweetened cocoa powder" href="#"></a>
382
+ <span>¼ cup unsweetened cocoa powder</span>
383
+ </li>
384
+ <li class="">
385
+ <a class="chkbox to_list " title="Add to shopping list" rel="2 tbsp cornstarch" href="#"></a>
386
+ <span>2 tbsp cornstarch</span>
387
+ </li>
388
+ <li class="">
389
+ <a class="chkbox to_list " title="Add to shopping list" rel="¼ tsp salt" href="#"></a>
390
+ <span>¼ tsp salt</span>
391
+ </li>
392
+ <li class="">
393
+ <a class="chkbox to_list " title="Add to shopping list" rel="4 large eggs, lightly beaten" href="#"></a>
394
+ <span>4 large eggs, lightly beaten</span>
395
+ </li>
396
+ <li class="cap"></li>
397
+ </ul>
398
+ <span class="option">go view <a href="/list">your shopping list</a></span>
399
+ </div>
400
+ </dd>
401
+ </dl>
402
+ </li>
403
+ </ul>
404
+ </div>
405
+ <!-- /Toolbar -->
406
+ </div>
407
+ <!-- /Details -->
408
+ </div>
409
+ <!-- /Meta -->
410
+ </div>
411
+ <!-- /Head -->
412
+ <div id="main">
413
+ <!-- Recipe -->
414
+ <div class="recipe">
415
+ <!-- Ingredients -->
416
+ <div class="ingredients">
417
+ <h4 class="section">
418
+ <span>Ingredients</span>
419
+ <hr/>
420
+ </h4>
421
+ <ul>
422
+ <li class="skip">
423
+ <h4 class="section sub">
424
+ <span>Crust</span>
425
+ <hr/>
426
+ </h4>
427
+ </li>
428
+ <li class="">1 ¾ cups chocolate wafer cookie crumbs (about 5.5 oz) <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="1 ¾ cups chocolate wafer cookie crumbs (about 5.5 oz)">shopping list</a>
429
+ </li>
430
+ <li class="">3 tbsp orange juice <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="3 tbsp orange juice">shopping list</a>
431
+ </li>
432
+ <li class="">3 tbsp melted butter <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="3 tbsp melted butter">shopping list</a>
433
+ </li>
434
+ <li class="skip">
435
+ <h4 class="section sub">
436
+ <span>Filling</span>
437
+ <hr/>
438
+ </h4>
439
+ </li>
440
+ <li class="">10 oz bittersweet chocolate (at least 70%, preferably couverture), chopped <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="10 oz bittersweet chocolate (at least 70%, preferably couverture), chopped">shopping list</a>
441
+ </li>
442
+ <li class="">24 oz cream cheese, room temperature <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="24 oz cream cheese, room temperature">shopping list</a>
443
+ </li>
444
+ <li class="">8 oz mascarpone cheese, room temperature <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="8 oz mascarpone cheese, room temperature">shopping list</a>
445
+ </li>
446
+ <li class="">2 tbsp sour cream <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="2 tbsp sour cream">shopping list</a>
447
+ </li>
448
+ <li class="">1 cup brown sugar <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="1 cup brown sugar">shopping list</a>
449
+ </li>
450
+ <li class="">¼ cup unsweetened cocoa powder <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="¼ cup unsweetened cocoa powder">shopping list</a>
451
+ </li>
452
+ <li class="">2 tbsp cornstarch <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="2 tbsp cornstarch">shopping list</a>
453
+ </li>
454
+ <li class="">¼ tsp salt <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="¼ tsp salt">shopping list</a>
455
+ </li>
456
+ <li class="">4 large eggs, lightly beaten <a href="#" class="to_shopping_list to_list " title="Add to shopping list" rel="4 large eggs, lightly beaten">shopping list</a>
457
+ </li>
458
+ </ul>
459
+ <!-- Ingredients Not Right -->
460
+ </div>
461
+ <!-- How to make it -->
462
+ <div class="how">
463
+ <h4 class="section">
464
+ <span>How to make it</span>
465
+ <hr/>
466
+ </h4>
467
+ <ul class="instructions">
468
+ <li>
469
+ <h4 class="section sub">
470
+ <span>Crust</span>
471
+ <hr/>
472
+ </h4>
473
+ </li>
474
+ <li>Preheat oven to 350°F. Butter a 9” springform pan and line the base with parchment.</li>
475
+ <li>Mix all the crust ingredients together well.</li>
476
+ <li>Press evenly onto the bottom (not the sides) of the prepared pan.</li>
477
+ <li>Bake just until set, about 6 minutes.</li>
478
+ <li>Set aside while preparing filling. Keep oven on.</li>
479
+ <li>
480
+ <h4 class="section sub">
481
+ <span>Filling</span>
482
+ <hr/>
483
+ </h4>
484
+ </li>
485
+ <li>Melt the chocolate in the microwave or over a pot of simmering water until smooth and glossy.</li>
486
+ <li>In a bowl, beat cheeses, sour cream, brown sugar, cocoa powder, cornstarch and salt until smooth. Blend in eggs, 1 at a time.</li>
487
+ <li>By hand, fold in the chocolate until just blended in, trying not to incorporate air.</li>
488
+ <li>Pour filling over crust and rap sharply on a countertop to dislodge air pockets.</li>
489
+ <li>Smooth the top and place in a deep roasting pan.</li>
490
+ <li>Pour boiling water into the roasting pan, about ½ way up the side of the springform.</li>
491
+ <li>Bake until center is just set and just appears dry, about 1 hour.</li>
492
+ <li>Turn the oven off and cool the cheesecake inside for 1 hour, then remove from the oven and waterbath and cool 1 hour on a rack.</li>
493
+ <li>Run a knife around the side of cake to loosen the ring, but do not remove it.</li>
494
+ <li>Cover loosely and chill overnight before removing the ring and slicing.</li>
495
+ <li>Serve with <a class="recipe" href="http://www.grouprecipes.com/135868/raspberry-compote.html">Raspberry Compote</a></li>
496
+ </ul>
497
+ <!-- Not Lovin' This One? -->
498
+ <!-- Step-by-Step Photos -->
499
+ <!-- Step by Step Photos Add Link -->
500
+ </div>
501
+ <p class="clear"></p>
502
+ </div>
503
+ <!-- Print
504
+ -->
505
+ <!-- Similar Recipes -->
506
+ <!-- Fans -->
507
+ <div id="fans">
508
+ <!-- Bookmark Button -->
509
+ <a id="ilike" class="" href="#"><span></span></a>
510
+ <h6 class="section">
511
+ <span>People Who Like This Dish <em>4</em></span>
512
+ <hr/>
513
+ </h6>
514
+ <!-- Fan Stream -->
515
+ <ul class="people_stream">
516
+ <li rel="1">
517
+ <a href="http://www.grouprecipes.com/people/luisascatering" title="Visit luisascatering's Page">
518
+ <span class="img_placeholder" title="src=http://s1.grouprecipes.com/images/users/35/e06cdc54ea335f8e1ce3375079d5f2c5.jpg&class=photo_35"></span>
519
+ <span class="details">
520
+ <strong>luisascatering</strong>
521
+ <small>San Carlos, CA</small>
522
+ </span>
523
+ </a>
524
+ </li>
525
+ <li rel="2">
526
+ <a href="http://www.grouprecipes.com/people/clbacon" title="Visit clbacon's Page">
527
+ <span class="img_placeholder" title="src=http://s1.grouprecipes.com/images/users/35/d18f29b9d019b97e43e84609cf1121205537866.jpg&class=photo_35"></span>
528
+ <span class="details">
529
+ <strong>clbacon</strong>
530
+ <small>Birmingham, AL</small>
531
+ </span>
532
+ </a>
533
+ </li>
534
+ <li rel="3">
535
+ <a href="http://www.grouprecipes.com/people/lanetteforrester" title="Visit lanetteforrester's Page">
536
+ <span class="img_placeholder" title="src=http://s2.grouprecipes.com/images/users/35/avatar.png&class=photo_35"></span>
537
+ <span class="details">
538
+ <strong>lanetteforrester</strong>
539
+ <small>Nowhere, Us</small>
540
+ </span>
541
+ </a>
542
+ </li>
543
+ <li class="blank edge"></li>
544
+ <li rel="5">
545
+ <a href="http://www.grouprecipes.com/people/mandymoore" title="Visit mandymoore's Page">
546
+ <span class="img_placeholder" title="src=http://s1.grouprecipes.com/images/users/35/7bbba32a2ef0c0782c5c5c851f1b2a77.jpg&class=photo_35"></span>
547
+ <span class="details">
548
+ <strong>mandymoore</strong>
549
+ <small>Wiggins, Ms</small>
550
+ </span>
551
+ </a>
552
+ </li>
553
+ <li rel="6">
554
+ <a href="http://www.grouprecipes.com/people/brearenee29" title="Visit brearenee29's Page">
555
+ <span class="img_placeholder" title="src=http://s2.grouprecipes.com/images/users/35/avatar.png&class=photo_35"></span>
556
+ <span class="details">
557
+ <strong>brearenee29</strong>
558
+ <small>Nowhere, Us</small>
559
+ </span>
560
+ </a>
561
+ </li>
562
+ <li rel="7">
563
+ <a href="http://www.grouprecipes.com/people/jo_jo_ba" title="Visit jo_jo_ba's Page">
564
+ <span class="img_placeholder" title="src=http://s2.grouprecipes.com/images/users/35/75336a6ad4bc39739861e0fcf91830f7.jpg&class=photo_35"></span>
565
+ <span class="details">
566
+ <strong>jo_jo_ba</strong>
567
+ <small>Oshawa, CA</small>
568
+ </span>
569
+ </a>
570
+ </li>
571
+ <!-- "How" Message -->
572
+ <li class="msg "><strong>Show up here?</strong>Review or Bookmark it! &#10004;</li>
573
+ </ul>
574
+ </div>
575
+ <!-- Comments -->
576
+ <div id="comments">
577
+ <!-- Heading -->
578
+ <h6 class="section">
579
+ <span>Reviews & Comments <em>1</em></span>
580
+ <hr/>
581
+ <ul class="heading_filters">
582
+ <li class="open">
583
+ <a href="#">All Comments</a>
584
+ <var class="b"></var><var class="tl"></var><var class="tr"></var>
585
+ </li>
586
+ <li>
587
+ <a id="show_comment_form" href="#">Your Comments</a>
588
+ <var class="b"></var><var class="tl"></var><var class="tr"></var>
589
+ </li>
590
+ </ul>
591
+ <p class="clear"></p>
592
+ </h6>
593
+ <!-- Comment & Review Form -->
594
+ <form id="add_comment" method="post" action="">
595
+ <!-- Avatar -->
596
+ <a href="#" class="avatar"><img src="http://s2.grouprecipes.com/images/users/35/avatar.png" class="photo_35" alt=""/></a>
597
+ <div class="review">
598
+ <!-- Field -->
599
+ <fieldset class="tip">
600
+ <label>What do you think?</label>
601
+ <textarea name="comment"></textarea>
602
+ <!-- Link Tip -->
603
+ <div class="info closed">
604
+ <a id="comment_tip" href="#">Add a Link?</a>
605
+ <div class="body">
606
+ <p>Post a link to another recipe or group by pasting the url into the box where you want it to show up. We'll do the rest.</p>
607
+ </div>
608
+ </div>
609
+ </fieldset>
610
+ <!-- Question -->
611
+ <fieldset id="did_you_make_it">
612
+ <label>
613
+ If you made this, <a href="#" rel="yes">attach a rating</a> to your comments.
614
+ </label>
615
+ </fieldset>
616
+ <!-- Rating -->
617
+ <fieldset class="stars">
618
+ <label>How Good Was It?</label>
619
+ <ul class="stars">
620
+ <li><a href="#"></a></li>
621
+ <li><a href="#"></a></li>
622
+ <li><a href="#"></a></li>
623
+ <li><a href="#"></a></li>
624
+ <li><a href="#"></a></li>
625
+ <li class="rating_desc"></li>
626
+ </ul>
627
+ </fieldset>
628
+ <!-- Submit Button -->
629
+ <fieldset class="actions alt">
630
+ <a id="post_comment" class="button disabled" href="#"><span>Post Message</span></a>
631
+ <strong>or <a id="cancel_comment" href="#">cancel</a></strong>
632
+ </fieldset>
633
+ </div>
634
+ </form>
635
+ <!-- Comment Stream -->
636
+ <ul id="recipe_comments" class="open_comments">
637
+ <li id="comment_441091" class="c ">
638
+ <!-- Rating -->
639
+ <!-- Meta Line -->
640
+ <em class="meta">
641
+ <a href="http://www.grouprecipes.com/people/jo_jo_ba">
642
+ <span class="img_placeholder" title="src=http://s2.grouprecipes.com/images/users/50/75336a6ad4bc39739861e0fcf91830f7.jpg&class=photo_50"></span>
643
+ <span>jo_jo_ba</span>
644
+ </a>
645
+ 6 hours ago
646
+ <!-- Edit in Place -->
647
+ </em>
648
+ <!-- Comment Body -->
649
+ <div class="message">
650
+ <div class="mbody">Amount Per Serving<br /> Calories: 441.6 <br /> Total Fat: 34.0 g<br /> Cholesterol: 99.5 mg<br /> Sodium: 226.6 mg<br /> Total Carbs: 38.5 g<br /> Dietary Fiber: 2.3 g<br /> Protein: 7.7 g</div>
651
+ <em class="quote"></em>
652
+ </div>
653
+ <!-- Helpful -->
654
+ <small class="helpful">Was this review helpful? <a rel="441091" href="#">Yes</a></small>
655
+ <!-- Delete, Flag -->
656
+ <a class="flag" href="#contentID=441091&content_type=recipe comment">Flag</a>
657
+ </li>
658
+ </ul>
659
+ </div>
660
+ <!-- Not Sure -->
661
+ </div>
662
+ <!-- /main content -->
663
+ <!-- Sidebar -->
664
+ <div id="side">
665
+ <!-- Cook Details -->
666
+ <div class="sidebox thecook">
667
+ <h4>The Cook</h4>
668
+ <!-- User photo -->
669
+ <a href="http://www.grouprecipes.com/people/jo_jo_ba"><img src="http://s2.grouprecipes.com/images/users/200/75336a6ad4bc39739861e0fcf91830f7.jpg" alt="" /></a>
670
+ <!-- Name -->
671
+ <a href="http://www.grouprecipes.com/people/jo_jo_ba" class="usr pro">jo_jo_ba
672
+ </a>
673
+ <!-- Location -->
674
+ <span class="from">Oshawa, CA</span>
675
+ <!-- Follow Button -->
676
+ <fieldset class="follow actions">
677
+ <a id="follow" class="button " rel="jo_jo_ba" href="#"><span>Subscribe to My Recipes</span></a>
678
+ <div class="msg"><strong>Like jo_jo_ba's recipes?</strong> Never miss an upload!</div>
679
+ </fieldset>
680
+ <!-- Sash -->
681
+ <span class=""></span>
682
+ <p class="cap"></p>
683
+ </div>
684
+ <!-- Ad, Ack. We gotta pay the bills. -->
685
+ <div class="ad_rect">
686
+ <!-- a.grouprecipes adtag-skyscraper-1 -->
687
+ <div id='adtag-skyscraper-1'>
688
+ <script type='text/javascript'>
689
+ googletag.cmd.push(function() { googletag.display('adtag-skyscraper-1'); });
690
+ </script>
691
+ </div>
692
+ <!-- a.grouprecipes adtag-mediumrectangle-3 -->
693
+ <div id='adtag-mediumrectangle-3'>
694
+ <script type='text/javascript'>
695
+ googletag.cmd.push(function() { googletag.display('adtag-mediumrectangle-3'); });
696
+ </script>
697
+ </div>
698
+ </div>
699
+ <!-- Rating -->
700
+ <div id="rating" class="sidebox">
701
+ <h4>The Rating</h4>
702
+ <!-- Word rating -->
703
+ <p id="qual_rating" class="rating r_0"></p>
704
+ <!-- Rating Stars -->
705
+ <ul id="rating_0" class="pears">
706
+ <li><a class="" href="#"></a></li>
707
+ <li><a class="" href="#"></a></li>
708
+ <li><a class="" href="#"></a></li>
709
+ <li><a class="" href="#"></a></li>
710
+ <li><a class="" href="#"></a></li>
711
+ </ul>
712
+ <!-- Review Form -->
713
+ <form id="rating_form" method="post" action="">
714
+ <fieldset>
715
+ <label>How did it taste?</label>
716
+ <textarea id="rating_comment" name="comment"></textarea>
717
+ </fieldset>
718
+ <fieldset class="actions alt">
719
+ <a id="add_rating" class="button" href="#"><span>Post Your Review</span></a>
720
+ <strong>or <a id="cancel_rating" href="#">cancel</a></strong>
721
+ </fieldset>
722
+ </form>
723
+ <!-- Num Reviews -->
724
+ <em class="stats review hreview-aggregate">
725
+ <span class="rating"><span class="value-title" title="0"></span></span>
726
+ Reviewed by <span class="count">0</span> people
727
+ </em>
728
+ <!-- Reviews list -->
729
+ <ul id="voters" class="bubbles">
730
+ </ul>
731
+ <p class="cap"></p>
732
+ </div>
733
+ <!-- Top Similar -->
734
+ <!-- Groups -->
735
+ <div id="groups" class="sidebox">
736
+ <h4>The Groups</h4>
737
+ <!-- Add Recipe to Group -->
738
+ <!-- Current Groups -->
739
+ <ul id="current_groups" class="groups">
740
+ <li>
741
+ <a href="http://www.grouprecipes.com/group/sweet-tooth/5">
742
+ <img src="http://s2.grouprecipes.com/images/groups/50/b02de2e468450f051ee22fc9818168ea916934.jpg" class="photo_50" alt="" />
743
+ <div class="content">
744
+ <h6>Sweet Tooth</h6>
745
+ <em>445 members</em>
746
+ <span class="public"></span>
747
+ </div>
748
+ </a>
749
+ </li>
750
+ <li>
751
+ <a href="http://www.grouprecipes.com/group/good-to-freeze/22">
752
+ <img src="http://s1.grouprecipes.com/images/groups/50/3bd91f67f93691ce1f5116ca693cfcb830449.jpg" class="photo_50" alt="" />
753
+ <div class="content">
754
+ <h6>Good To Freeze</h6>
755
+ <em>126 members</em>
756
+ <span class="public"></span>
757
+ </div>
758
+ </a>
759
+ </li>
760
+ <li>
761
+ <a href="http://www.grouprecipes.com/group/comfort-foods/30">
762
+ <img src="http://s2.grouprecipes.com/images/groups/50/3816b427d5d152d97b557407aca476088708946.jpg" class="photo_50" alt="" />
763
+ <div class="content">
764
+ <h6>Comfort Foods</h6>
765
+ <em>764 members</em>
766
+ <span class="public"></span>
767
+ </div>
768
+ </a>
769
+ </li>
770
+ <li>
771
+ <a href="http://www.grouprecipes.com/group/original-recipes/178">
772
+ <img src="http://s1.grouprecipes.com/images/groups/50/f4a17e27251dc5e271dd5caa12ec3c0b6906009.jpg" class="photo_50" alt="" />
773
+ <div class="content">
774
+ <h6>Original Recipes</h6>
775
+ <em>143 members</em>
776
+ <span class="public"></span>
777
+ </div>
778
+ </a>
779
+ </li>
780
+ <li>
781
+ <a href="http://www.grouprecipes.com/group/christmas-all-year/197">
782
+ <img src="http://s1.grouprecipes.com/images/groups/50/13b5f3356436a41e5a3c7fd93b2f565d8915272.jpg" class="photo_50" alt="" />
783
+ <div class="content">
784
+ <h6>Christmas All Year</h6>
785
+ <em>181 members</em>
786
+ <span class="public"></span>
787
+ </div>
788
+ </a>
789
+ </li>
790
+ <li>
791
+ <a href="http://www.grouprecipes.com/group/family-favourites/226">
792
+ <img src="http://s1.grouprecipes.com/images/groups/50/a82e9c70eafd155fb003d42ed52f1d346398182.jpg" class="photo_50" alt="" />
793
+ <div class="content">
794
+ <h6>Family Favourites</h6>
795
+ <em>134 members</em>
796
+ <span class="public"></span>
797
+ </div>
798
+ </a>
799
+ </li>
800
+ <li>
801
+ <a href="http://www.grouprecipes.com/group/all-holidays/264">
802
+ <img src="http://s1.grouprecipes.com/images/groups/50/776b46ec905399d88bdbe94ef0b41af56132512.jpg" class="photo_50" alt="" />
803
+ <div class="content">
804
+ <h6>All Holidays</h6>
805
+ <em>135 members</em>
806
+ <span class="public"></span>
807
+ </div>
808
+ </a>
809
+ </li>
810
+ <li>
811
+ <a href="http://www.grouprecipes.com/group/from-scratch/298">
812
+ <img src="http://s2.grouprecipes.com/images/groups/50/b1d8d63440570b3e72f738eda5a2a95d3882483.jpg" class="photo_50" alt="" />
813
+ <div class="content">
814
+ <h6>FROM SCRATCH</h6>
815
+ <em>144 members</em>
816
+ <span class="public"></span>
817
+ </div>
818
+ </a>
819
+ </li>
820
+ <li>
821
+ <a href="http://www.grouprecipes.com/group/nut-free/310">
822
+ <img src="http://s2.grouprecipes.com/images/groups/50/f406458cd014ce08407d8d50d25d74ca4338765.jpg" class="photo_50" alt="" />
823
+ <div class="content">
824
+ <h6>Nut Free</h6>
825
+ <em>5 members</em>
826
+ <span class="public"></span>
827
+ </div>
828
+ </a>
829
+ </li>
830
+ <li>
831
+ <a href="http://www.grouprecipes.com/group/we-love-it-but/318">
832
+ <img src="http://s2.grouprecipes.com/images/groups/50/b2df8b2b404e434e3b78e4f5002004a15857582.gif" class="photo_50" alt="" />
833
+ <div class="content">
834
+ <h6>We Love It But</h6>
835
+ <em>134 members</em>
836
+ <span class="public"></span>
837
+ </div>
838
+ </a>
839
+ </li>
840
+ </ul>
841
+ <!-- More link -->
842
+ <a id="more_groups" class="more" href="#"><span>More Groups</span></a>
843
+ <p class="cap"></p>
844
+ </div>
845
+ </div>
846
+ <!-- /sidebar content -->
847
+ <p class="clear"></p>
848
+ </div>
849
+ <!-- Edit Modal -->
850
+ </div>
851
+ <!-- End body wrap-->
852
+ <div id="footer">
853
+ <div class="breadcrumb">
854
+ <div class="inner">
855
+ <a href="/directory">Recipes</a> <strong> Deep Dark Chocolate Cheesecake</strong>
856
+ <var><a id="top" href="#">Top</a></var>
857
+ </div>
858
+ </div>
859
+ <div class="contents">
860
+ <div class="inner">
861
+ <ul class="boxes">
862
+ <li class="mystuff">
863
+ <h6>My Stuff</h6>
864
+ <ul>
865
+ <li><a href="#">My Home</a></li>
866
+ <li><a href="#">My Bookmarks</a></li>
867
+ <li><a href="#">Shopping List</a></li>
868
+ <li><a href="#">Weekly Planner</a></li>
869
+ </ul>
870
+ </li>
871
+ <li class="jump">
872
+ <h6>Jump To</h6>
873
+ <ul>
874
+ <li><a href="/directory">Browse Categories</a></li>
875
+ <li><a href="/search">Search</a></li>
876
+ </ul>
877
+ </li>
878
+ <li class="help">
879
+ <h6>Help</h6>
880
+ <ul>
881
+ <li><a href="/group/help-group/1678">Help Forum</a></li>
882
+ <li><a href="/faq">FAQ</a></li>
883
+ </ul>
884
+ </li>
885
+ <li class="search">
886
+ <form action="/search" method="post">
887
+ <input type="text" name="keywords" />
888
+ <input type="hidden" name="search_what" value="kws" />
889
+ </form>
890
+ <ul>
891
+ <li><a class="pop" rel="inspiration" href="#">Search Inspiration</a></li>
892
+ <li><a href="/terms">Terms of Service & Privacy</a></li>
893
+ <li><a class="pop" rel="contact" href="#">Contact</a></li>
894
+ <li><a class="pop ads" rel="advertise" href="#">Advertise<span> served by SheKnows Food</span></a></li>
895
+ </ul>
896
+ </li>
897
+ </ul>
898
+ <!-- Contact Pop -->
899
+ <dl id="pop_contact" class="pop_inline open">
900
+ <dd>
901
+ <div class="wrap">
902
+ <h6>Get in Touch</h6>
903
+ <p class="desc"><strong>Take Note</strong> We <em>will not</em> respond to member emails. Use the <a href="/group/help-group/1678">Help Forum</a> for that.</p>
904
+ <p class="desc">If you have a business development or DMCA inquiry, <a href="#" id="show_contact">Click Here</a>.</p>
905
+ <p id="contact_img" class="contact"></p>
906
+ </div>
907
+ <var class="tr"></var>
908
+ <var class="bl"></var>
909
+ </dd>
910
+ </dl>
911
+ <!-- Advertising pop -->
912
+ <dl id="pop_advertise" class="pop_inline open">
913
+ <dd>
914
+ <div class="wrap">
915
+ <h6>Advertise</h6>
916
+ <p class="desc">Advertising on Group Recipes is sold by SheKnows.com. You can <a href="http://www.sheknows.com/mediakit/contact-us" rel="nofollow">contact the sales team</a> for more info.</p>
917
+ </div>
918
+ <var class="tr"></var>
919
+ <var class="bl"></var>
920
+ </dd>
921
+ </dl>
922
+ </div>
923
+ </div>
924
+ </div>
925
+ <!-- /footer -->
926
+ <!-- Select Prototype -->
927
+ <fieldset id="select_prototype" class="select prototype">
928
+ <label></label>
929
+ <div class="resize_wrap">
930
+ <input type="text" readonly="true" class="select" />
931
+ <a class="btn"></a>
932
+ <p class="clear"></p>
933
+ <small>
934
+ <div class="mask">
935
+ <div class="scrollbar">
936
+ <div class="bottom"></div>
937
+ <div class="handle"></div>
938
+ </div>
939
+ </div>
940
+ </small>
941
+ </div>
942
+ </fieldset>
943
+ <!-- User Search Comparison Message -->
944
+ <!-- Recipe Comparison Bar -->
945
+ <div id="comparison_bar">
946
+ <div class="inner">
947
+ <h6>
948
+ <strong>Maybe List</strong>
949
+ </h6>
950
+ <span id="remember_msg" class="">
951
+ <a id="remember_recipe" href="#">Hang onto this recipe</a>
952
+ <p>while I look at others.</p>
953
+ </span>
954
+ <div class="counter">
955
+ <div class="marrow">Holding <strong id="holding_count">0 recipes</strong>
956
+ </div>
957
+ </div>
958
+ </div>
959
+ </div>
960
+ <input id="recipeID" value="135867" type="hidden" />
961
+ <script type="text/javascript" src="http://s1.grouprecipes.com/js/mootools.v1287593294.js"></script>
962
+ <script type="text/javascript" src="http://s1.grouprecipes.com/js/universal.v1363111326.js"></script>
963
+ <script type="text/javascript" src="http://s2.grouprecipes.com/js/photo_grow.v1277047027.js"></script>
964
+ <script type="text/javascript" src="http://s2.grouprecipes.com/js/sifr_mootools.v1277047027.js"></script>
965
+ <script type="text/javascript" src="http://s2.grouprecipes.com/js/recipe_step_photos_pop.v1275408908.js"></script>
966
+ <script type="text/javascript" src="http://s2.grouprecipes.com/js/moderate_comments.v1279373386.js"></script>
967
+ <script type="text/javascript" src="http://s2.grouprecipes.com/js/recipe.v1281622333.js"></script>
968
+ <script>
969
+ // Comscore
970
+ var _comscore = _comscore || [];_comscore.push({ c1: "2", c2: "15476338" });(function() {var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";el.parentNode.insertBefore(s, el);})();
971
+
972
+ // Quantcast
973
+ _qoptions={
974
+ qacct:"p-32T4VGGPDIEy2"
975
+ };
976
+
977
+ </script>
978
+ <noscript><img src="http://b.scorecardresearch.com/p?c1=2&c2=15476338&cv=2.0&cj=1" /></noscript>
979
+ <script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
980
+ <noscript><img src="http://pixel.quantserve.com/pixel/p-32T4VGGPDIEy2.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></noscript>
981
+ </body>
982
+ </html>