lettuce 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/Rakefile +7 -0
- data/lettuce.gemspec +22 -0
- data/lib/lettuce.rb +24 -0
- data/lib/lettuce/hingredient.rb +3 -0
- data/lib/lettuce/hrecipe.rb +55 -0
- data/lib/lettuce/version.rb +3 -0
- data/test/fixtures/asparagus.html +2226 -0
- data/test/helper.rb +3 -0
- data/test/test_lettuce.rb +27 -0
- metadata +70 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
data/lettuce.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "lettuce/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "lettuce"
|
7
|
+
s.version = Lettuce::VERSION
|
8
|
+
s.authors = ["Tom Rudick"]
|
9
|
+
s.email = ["tmrudick@gmail.com"]
|
10
|
+
s.homepage = "http://github.com/tmrudick/lettuce"
|
11
|
+
s.summary = %q{A Ruby hRecipe Microformat parser}
|
12
|
+
s.description = %q{A Ruby hRecipe Microformat parser using Nokogiri}
|
13
|
+
|
14
|
+
s.rubyforge_project = "lettuce"
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
s.add_dependency "nokogiri"
|
22
|
+
end
|
data/lib/lettuce.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
require "lettuce/version"
|
2
|
+
require 'lettuce/hrecipe'
|
3
|
+
require 'open-uri'
|
4
|
+
require 'nokogiri'
|
5
|
+
|
6
|
+
module Lettuce
|
7
|
+
def self.parse_url(url)
|
8
|
+
begin
|
9
|
+
doc = Nokogiri::HTML(open(url))
|
10
|
+
rescue
|
11
|
+
return []
|
12
|
+
end
|
13
|
+
|
14
|
+
results = []
|
15
|
+
|
16
|
+
doc.css('.hrecipe').each do |hrecipe|
|
17
|
+
recipe = HRecipe.new(hrecipe, url)
|
18
|
+
results.push(recipe) if recipe.is_valid?
|
19
|
+
end
|
20
|
+
|
21
|
+
return results
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'lettuce/hingredient'
|
2
|
+
|
3
|
+
class HRecipe
|
4
|
+
|
5
|
+
attr_accessor :fn, :ingredients
|
6
|
+
|
7
|
+
def initialize(doc, url)
|
8
|
+
@ndoc = doc
|
9
|
+
@url = url # May be eventually used for page wrapping
|
10
|
+
@valid = true
|
11
|
+
parse
|
12
|
+
end
|
13
|
+
|
14
|
+
def is_valid?
|
15
|
+
@valid
|
16
|
+
end
|
17
|
+
|
18
|
+
# Parse photo
|
19
|
+
def photo
|
20
|
+
photo_element = @ndoc.css('.photo')
|
21
|
+
|
22
|
+
return nil if photo_element.size == 0
|
23
|
+
|
24
|
+
return photo_element[0]['src']
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
def parse
|
29
|
+
# Parse all required fields (fn, ingredients) and lazy load everything else
|
30
|
+
|
31
|
+
# Parse name
|
32
|
+
fn = @ndoc.css('.fn')
|
33
|
+
if fn.size > 1 then
|
34
|
+
@valid = false
|
35
|
+
return
|
36
|
+
end
|
37
|
+
|
38
|
+
@fn = fn[0].content
|
39
|
+
|
40
|
+
# Parse ingredient list
|
41
|
+
ingredients = @ndoc.css('.ingredient')
|
42
|
+
if ingredients.size == 0 then
|
43
|
+
@valid = false
|
44
|
+
return
|
45
|
+
end
|
46
|
+
|
47
|
+
# TODO: Also parse type and value
|
48
|
+
@ingredients = []
|
49
|
+
ingredients.each do |i|
|
50
|
+
ingredient = HIngredient.new
|
51
|
+
ingredient.text = i.content
|
52
|
+
@ingredients.push ingredient
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,2226 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html><html>
|
3
|
+
|
4
|
+
|
5
|
+
<head>
|
6
|
+
<title>Roasted Asparagus Recipe : Tyler Florence : Food Network</title>
|
7
|
+
<meta name="description" content="Food Network invites you to try this Roasted Asparagus recipe from Tyler Florence.">
|
8
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
9
|
+
<meta http-equiv="Pragma" content="no-cache">
|
10
|
+
<meta http-equiv="Expires" content="0">
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
<link rel="icon" type="image/png" href="http://images.foodnetwork.com/webfood/fn20/imgs/favicon.png"/>
|
16
|
+
<link rel="stylesheet" type="text/css" href="http://images.foodnetwork.com/webfood/fn20/css/global.css "/>
|
17
|
+
<link rel="stylesheet" type="text/css" href="http://images.foodnetwork.com/webfood/fn20/css/recipes.css "/>
|
18
|
+
<noscript><link rel="stylesheet" type="text/css" href="http://images.foodnetwork.com/webfood/fn20/css/sni-food-noscript.css"/></noscript>
|
19
|
+
|
20
|
+
|
21
|
+
<script src="http://images.foodnetwork.com/webfood/fn20/js/sni-config.js" type="text/javascript" charset="utf-8"></script>
|
22
|
+
<script src="http://www.sndimg.com/common/js/sni-core/sni-core.2.0.js" type="text/javascript" charset="utf-8"></script>
|
23
|
+
<script src="http://images.foodnetwork.com/webfood/fn20/js/global.js" type="text/javascript" charset="utf-8"></script>
|
24
|
+
<script src="http://images.foodnetwork.com/webfood/fn20/js/recipes.js" type="text/javascript" charset="utf-8"></script>
|
25
|
+
<script type="text/javascript" src="http://common.scrippsnetworks.com/common/adimages/networkads/food/prod/adRestriction.js"></script>
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
<meta property="og:title" content="Roasted Asparagus"/>
|
31
|
+
<meta property="og:url" content="http://www.foodnetwork.com/recipes/tyler-florence/roasted-asparagus-recipe/index.html"/>
|
32
|
+
<meta property="og:type" content="article"/>
|
33
|
+
<meta property="og:image" content="http://img.foodnetwork.com/FOOD/2009/01/13/vday_roastedasparagus4854_s4x3.jpg"/>
|
34
|
+
|
35
|
+
<script type="text/javascript">
|
36
|
+
var mdManager = new MetaDataManager();
|
37
|
+
mdManager.addParameter("Url", "/recipes/tyler-florence/roasted-asparagus-recipe/index.html");
|
38
|
+
mdManager.addParameter("Role", "");
|
39
|
+
mdManager.addParameter("Title", "Roasted Asparagus");
|
40
|
+
mdManager.addParameter("Abstract", "");
|
41
|
+
mdManager.addParameter("Keywords", "");
|
42
|
+
mdManager.addParameter("Site", "FOOD");
|
43
|
+
mdManager.addParameter("SctnName", "RECIPES");
|
44
|
+
mdManager.addParameter("SctnDspName", "Recipes");
|
45
|
+
mdManager.addParameter("CategoryDspName", "");
|
46
|
+
mdManager.addParameter("SctnId", "9936");
|
47
|
+
mdManager.addParameter("DetailId", "30733");
|
48
|
+
mdManager.addParameter("PageNumber", "1");
|
49
|
+
mdManager.addParameter("HubId", "");
|
50
|
+
mdManager.addParameter("HubType", "");
|
51
|
+
mdManager.addParameter("HubSponsor", "");
|
52
|
+
mdManager.addParameter("AdKey1", "HEALTHY");
|
53
|
+
mdManager.addParameter("AdKey2", "");
|
54
|
+
mdManager.addParameter("ContentTag1", "");
|
55
|
+
mdManager.addParameter("ContentTag2", "");
|
56
|
+
mdManager.addParameter("Channel", "");
|
57
|
+
mdManager.addParameter("Source", "MANUAL");
|
58
|
+
mdManager.addParameter("Classification", "RECIPES,FOOD");
|
59
|
+
mdManager.addParameter("Sponsorship", "FN12_VALENTINESDAY");
|
60
|
+
mdManager.addParameter("Type", "RECIPE");
|
61
|
+
mdManager.addParameter("UniqueId", "FOOD-RECIPE-30733-1");
|
62
|
+
mdManager.addParameter("ChefName", "Tyler Florence");
|
63
|
+
mdManager.addParameter("Dish", "");
|
64
|
+
mdManager.addParameter("MealType", "");
|
65
|
+
mdManager.addParameter("Nutrition", "");
|
66
|
+
mdManager.addParameter("Difficulty", "Easy");
|
67
|
+
mdManager.addParameter("Cuisine", "American, General");
|
68
|
+
mdManager.addParameter("MainIngredient", "Vegetables,Asparagus,Vegetables");
|
69
|
+
mdManager.addParameter("Occasion", "");
|
70
|
+
mdManager.addParameter("MealPart", "Side Dish");
|
71
|
+
mdManager.addParameter("Technique", "Roasting");
|
72
|
+
mdManager.addParameter("ImgUrl", "http://img.foodnetwork.com/FOOD/2009/01/13/vday_roastedasparagus4854_s4x3.jpg");
|
73
|
+
</script>
|
74
|
+
<script type="text/javascript">
|
75
|
+
mdManager.addParameter('UserId', userIdCookieUserId);
|
76
|
+
mdManager.addParameter('UserIdEmail', userIdEmail);
|
77
|
+
mdManager.addParameter('UserIdCreateDt', userIdCookieCreateDt);
|
78
|
+
mdManager.addParameter('UserIdVersion', userIdCookieVersion);
|
79
|
+
|
80
|
+
//var urUser = new SNI.UR.UrUser(new FOODApplicationConfig());
|
81
|
+
</script>
|
82
|
+
|
83
|
+
|
84
|
+
<script type="text/javascript">
|
85
|
+
var adManager = new AdManager();
|
86
|
+
initAdManager(adManager, mdManager);
|
87
|
+
</script>
|
88
|
+
</head>
|
89
|
+
<body id="" class="recipes recipe-citrus fn12-valentinesday ">
|
90
|
+
|
91
|
+
|
92
|
+
<!-- begin leaderboardHTML -->
|
93
|
+
|
94
|
+
<!-- end leaderboardHTML -->
|
95
|
+
<div id="fn-hd-wrap">
|
96
|
+
<div id="fn-hd" class="clrfix">
|
97
|
+
<div id="leaderboard">
|
98
|
+
<script type="text/javascript">LeaderboardAd(1);</script>
|
99
|
+
</div>
|
100
|
+
<div class="wrap">
|
101
|
+
|
102
|
+
<div id="deck">
|
103
|
+
<ul>
|
104
|
+
|
105
|
+
<li class="first"><a rel="gh-blog" href="http://blog.foodnetwork.com/fn-dish/">Blog</a></li>
|
106
|
+
<li><a target="_blank" rel="gh-magazine" href="https://subscribe.hearstmags.com/subscribe/splits/foodnetmag/fnm_sub_nav">Food Network Magazine</a></li>
|
107
|
+
<li><a rel="gh-vid-library" href="/food-network-top-food-videos/videos/index.html">Top Videos</a></li>
|
108
|
+
<li><a rel="gh-full-episodes" href="/food-network-full-episodes/videos/index.html">Full Episodes</a></li>
|
109
|
+
</ul>
|
110
|
+
|
111
|
+
</div>
|
112
|
+
|
113
|
+
<div class="topnav clrfix">
|
114
|
+
|
115
|
+
<div class="brand">
|
116
|
+
<a rel="gh-logo" href="/">Food Network</a>
|
117
|
+
</div>
|
118
|
+
|
119
|
+
<ul>
|
120
|
+
<li class="recipes-and-cooking"><a rel="gh-t1" href="/recipes-and-cooking/index.html">Recipes & Cooking</a></li>
|
121
|
+
<li class="shows"><a rel="gh-t2" href="/shows/index.html">Shows</a></li>
|
122
|
+
<li class="chefs"><a rel="gh-t3" href="/chefs/index.html">Chefs</a></li>
|
123
|
+
<li class="shop nav-w"><a rel="gh-t4" href="http://www.foodnetworkstore.com/?ccaid=FNFNSHOPTAB" target="blank">Shop Food Network</a>
|
124
|
+
<div class="drop">
|
125
|
+
<div class="hd"></div><div class="bd"><div class="content clrfix">
|
126
|
+
<div class="inside clrfix">
|
127
|
+
<h3>Shop by Chef</h3><ul>
|
128
|
+
<li><a rel="gh-t4s-1" title="Rachael Ray" href="http://www.foodnetworkstore.com/rachael-ray/talent/4294879600/?CCAID=FNFNSHOPTABRR">Rachael Ray</a></li>
|
129
|
+
<li><a rel="gh-t4s-2" title="Guy Fieri" href="http://www.foodnetworkstore.com/guy-fieri/talent/4294879146/?CCAID=FNFNSHOPTABGF">Guy Fieri</a></li>
|
130
|
+
<li><a rel="gh-t4s-3" title="Alton Brown" href="http://www.foodnetworkstore.com/alton-brown/talent/4294878122/?CCAID=FNFNSHOPTABAB">Alton Brown</a></li>
|
131
|
+
</ul><ul>
|
132
|
+
<li><a rel="gh-t4s-4" title="Paula Deen" href="http://www.foodnetworkstore.com/paula-deen/talent/4294880110/?CCAID=FNFNSHOPTABPD">Paula Deen</a></li>
|
133
|
+
<li><a rel="gh-t4s-5" title="Anne Burrell" href="http://www.foodnetworkstore.com/anne-burrell/talent/4294877649/?CCAID=FNFNSHOPTABBUR">Anne Burrell</a></li>
|
134
|
+
<li><a rel="gh-t4s-6" title="Bobby Flay" href="http://www.foodnetworkstore.com/bobby-flay/talent/4294878585/?CCAID=FNFNSHOPTABBF">Bobby Flay</a></li>
|
135
|
+
</ul><ul class="cta">
|
136
|
+
<li class="cta-title">More in:</li>
|
137
|
+
<li><a title="Shop All Chefs & Shows" href="http://www.foodnetworkstore.com/all-chefs-and-shows/?CCAID=FNFNSHOPTABACS">Shop All Chefs & Shows</a></li>
|
138
|
+
<li class="last"><a href="http://www.foodnetwork.com/recipes-and-cooking/index.html">Recipes & Cooking</a></li>
|
139
|
+
</ul>
|
140
|
+
</div><div class="shows clrfix">
|
141
|
+
<h3>Shop by Department</h3><ul>
|
142
|
+
<li><a rel="gh-t4s-7" title="Specials" href="http://www.foodnetworkstore.com/specials/?CCAID=FNFNSHOPTABSPEC">Specials</a></li>
|
143
|
+
<li><a rel="gh-t4s-8" title="Clearance" href="http://www.foodnetworkstore.com/clearance-sale/browse/4294881653/?CCAID=FNFNSHOPTABCL">Clearance</a></li>
|
144
|
+
<li><a rel="gh-t4s-9" title="Cookbooks" href="http://www.foodnetworkstore.com/cookbooks/department/96/?CCAID=FNFNSHOPTABCB">Cookbooks</a></li>
|
145
|
+
<li><a rel="gh-t4s-10" title="Cutlery" href="http://www.foodnetworkstore.com/cutlery/department/94/?CCAID=FNFNSHOPTABCUT">Cutlery</a></li>
|
146
|
+
<li><a rel="gh-t4s-11" title="Cookware" href="http://www.foodnetworkstore.com/cookware/department/1949/?CCAID=FNFNSHOPTABCKWR">Cookware</a></li>
|
147
|
+
<li><a rel="gh-t4s-12" title="Grocery Coupons" href="/free-money-saving-coupons/package/index.html">Grocery Coupons</a></li>
|
148
|
+
<li class="more"><a title="Shop All Departments" href="http://www.foodnetworkstore.com/all-departments/?CCAID=FNFNSHOPTABAD">Shop All Departments</a></li>
|
149
|
+
</ul>
|
150
|
+
</div>
|
151
|
+
</div></div><div class="ft"></div>
|
152
|
+
</div>
|
153
|
+
</li>
|
154
|
+
</ul>
|
155
|
+
|
156
|
+
</div>
|
157
|
+
<div class="nav-wrap"></div>
|
158
|
+
<div id="sub-nav" class="nav">
|
159
|
+
<ul id="sub-nav-recipes-and-cooking" class="recipes-nav clrfix">
|
160
|
+
<li class="nav-w"><a rel="gh-t1s1" class="comfort-foods" href="/valentines-day/package/index.html">Valentine’s Day</a></li>
|
161
|
+
<li class="nav-w"><a rel="gh-t1s1" class="quick-and-easy" href="/quick-and-easy/index.html">Quick & Easy</a>
|
162
|
+
<div class="drop">
|
163
|
+
<div class="hd"></div><div class="bd"><div class="content clrfix">
|
164
|
+
<div class="inside clrfix">
|
165
|
+
<h3>Inside Quick & Easy</h3><ul>
|
166
|
+
<li><a rel="gh-t1s-1" title="Healthy & Fast" href="/quick-and-simple/package/index.html">Healthy & Fast</a></li>
|
167
|
+
<li><a rel="gh-t1s-2" title="Weeknight Dinners" href="/5-weeknight-dinners-winter/package/index.html">Weeknight Dinners</a></li>
|
168
|
+
<li><a rel="gh-t1s-3" title="Breakfast Recipes" href="/breakfast/package/index.html">Breakfast Recipes</a></li>
|
169
|
+
<li><a rel="gh-t1s-4" title="Kid-Friendly" href="/cooking-with-kids/package/index.html">Kid-Friendly<br /></a></li>
|
170
|
+
<li><a rel="gh-t1s-5" title="Sandwich Central" href="/sandwich-central/package/index.html">Sandwich Central</a></li>
|
171
|
+
<li><a rel="gh-t1s-6" title="Shortcut Recipes" href="/love-your-kitchen/package/index.html">Shortcut Recipes</a></li>
|
172
|
+
</ul><ul>
|
173
|
+
<li><a rel="gh-t1s-7" title="Quick Side Dishes" href="/recipes-and-cooking/easy-winter-side-dish-recipes/pictures/index.html">Quick Side Dishes</a></li>
|
174
|
+
<li><a rel="gh-t1s-8" title="Fast Desserts" href="/recipes-and-cooking/winter-desserts-in-under-an-hour/pictures/index.html">Fast Desserts</a></li>
|
175
|
+
<li><a rel="gh-t1s-9" title="Basic Italian" href="/italian-cooking-basics/package/index.html">Basic Italian</a></li>
|
176
|
+
<li><a rel="gh-t1s-10" title="One-Pot Meals" href="/one-pot-meals/package/index.html">One-Pot Meals</a></li>
|
177
|
+
<li><a rel="gh-t1s-11" title="Winter Produce" href="/winter-produce-guide/package/index.html">Winter Produce</a></li>
|
178
|
+
<li><a rel="gh-t1s-12" title="Cooking Tips" href="/help-around-the-kitchen/package/index.html">Cooking Tips</a></li>
|
179
|
+
</ul><ul class="cta">
|
180
|
+
<li class="cta-title">More in:</li>
|
181
|
+
<li><a title="Quick and Easy" href="/quick-and-easy/index.html">Quick & Easy</a></li>
|
182
|
+
<li class="last"><a href="http://www.foodnetwork.com/recipes-and-cooking/index.html">Recipes & Cooking</a></li>
|
183
|
+
</ul>
|
184
|
+
</div><div class="shows clrfix">
|
185
|
+
<h3>Shows</h3><ul>
|
186
|
+
<li><a rel="gh-t1s-13" title="30 Minute Meals with Rachael Ray" href="/30-minute-meals/index.html">30 Minute Meals with Rachael Ray</a></li>
|
187
|
+
<li><a rel="gh-t1s-14" title="Cooking for Real" href="/cooking-for-real/index.html">Cooking for Real</a></li>
|
188
|
+
<li class="more"><a title="More Shows" href="/shows/index.html">More Shows</a></li>
|
189
|
+
</ul><ul>
|
190
|
+
<li></li>
|
191
|
+
</ul>
|
192
|
+
</div><div class="products clrfix"><h3>Shop Our Store</h3></div><ul>
|
193
|
+
<li><a rel="gh-t1s1-16" title="Rachael Ray Products" href="http://www.foodnetworkstore.com/rachael-ray/talent/4294879600/?CCAID=FNFNDDQERR">Rachael Ray Products</a></li>
|
194
|
+
<li><a rel="gh-t1s1-17" title="Cookbooks" href="http://www.foodnetworkstore.com/cookbooks/department/96/?CCAID=FNFNDDQECKBK">Cookbooks</a></li>
|
195
|
+
</ul><ul>
|
196
|
+
<li><a rel="gh-t1s2-18" title="Cook's Tools" href="http://www.foodnetworkstore.com/cook-s-tools/department/92/?CCAID=FNFNDDQETLS">Cook's Tools</a></li>
|
197
|
+
<li><a rel="gh-t1s2-19" title="Cutlery" href="http://www.foodnetworkstore.com/cutlery/department/94/?CCAID=FNFNDDQECUT">Cutlery</a></li>
|
198
|
+
</ul>
|
199
|
+
</div></div><div class="ft"></div>
|
200
|
+
</div>
|
201
|
+
</li>
|
202
|
+
<li class="nav-w"><a rel="gh-t1s2" class="healthy-eating" href="/healthy-eating/index.html">Healthy Eating</a>
|
203
|
+
<div class="drop">
|
204
|
+
<div class="hd"></div><div class="bd"><div class="content clrfix">
|
205
|
+
<div class="inside clrfix">
|
206
|
+
<h3>Inside Healthy Eating</h3><ul>
|
207
|
+
<li><a rel="gh-t1s-1" title="Healthy Every Week" href="/healthy-every-week/package/index.html">Healthy Every Week</a></li>
|
208
|
+
<li><a rel="gh-t1s-2" title="Dinner Recipes" href="/healthy-main-dishes/package/index.html">Dinner Recipes</a></li>
|
209
|
+
<li><a rel="gh-t1s-3" title="Slim Sides" href="/healthy-sides/package/index.html">Slim Sides</a></li>
|
210
|
+
<li><a rel="gh-t1s-4" title="Light Desserts" href="/healthy-desserts/package/index.html">Light Desserts</a></li>
|
211
|
+
<li><a rel="gh-t1s-5" title="Healthy Blog" href="http://blog.foodnetwork.com/healthyeats/">Healthy Blog</a></li>
|
212
|
+
</ul><ul>
|
213
|
+
<li><a rel="gh-t1s-6" title="Quick Recipes" href="/quick-and-simple/package/index.html">Quick Recipes</a></li>
|
214
|
+
<li><a rel="gh-t1s-7" title="Meal Makeovers" href="/healthy-makeovers/package/index.html">Meal Makeovers</a></li>
|
215
|
+
<li><a rel="gh-t1s-8" title="Vegetarian" href="/healthy_eating/healthy-vegetarian-recipes/pictures/index.html">Vegetarian</a></li>
|
216
|
+
<li><a rel="gh-t1s-9" title="Lunch Ideas" href="/healthy-eating/healthy-lunch-recipes/pictures/index.html">Lunch Ideas</a></li>
|
217
|
+
<li><a rel="gh-t1s-10" title="Smart Snacking" href="/healthy-eating/quick-and-easy-snack-recipes/pictures/index.html">Smart Snacking</a></li>
|
218
|
+
</ul><ul class="cta">
|
219
|
+
<li class="cta-title">More in:</li>
|
220
|
+
<li><a title="Healthy Eating" href="/healthy-eating/index.html">Healthy Eating</a></li>
|
221
|
+
<li class="last"><a href="http://www.foodnetwork.com/recipes-and-cooking/index.html">Recipes & Cooking</a></li>
|
222
|
+
</ul>
|
223
|
+
</div><div class="shows clrfix">
|
224
|
+
<h3>Shows</h3><ul>
|
225
|
+
<li><a rel="gh-t1s-11" title="Healthy Appetite with Ellie Krieger" href="/healthy-appetite-with-ellie-krieger/index.html">Healthy Appetite with Ellie Krieger</a></li>
|
226
|
+
<li class="more"><a title="More Shows" href="/shows/index.html">More Shows</a></li>
|
227
|
+
</ul>
|
228
|
+
</div><div class="products clrfix"><h3>Shop Our Store</h3></div><ul>
|
229
|
+
<li><a rel="gh-t1s1-12" title="Ellie Krieger Products" href="http://www.foodnetworkstore.com/ellie-krieger/talent/4294878210/?CCAID=FNFNDDHEEK">Ellie Krieger Products</a></li>
|
230
|
+
<li><a rel="gh-t1s1-13" title="Cookbooks" href="http://www.foodnetworkstore.com/cookbooks/department/96/?CCAID=FNFNDDHECK">Cookbooks</a></li>
|
231
|
+
</ul><ul>
|
232
|
+
<li><a rel="gh-t1s2-14" title="Cookware" href="http://www.foodnetworkstore.com/cookware/department/1949/?CCAID=FNFNDDHECKW">Cookware</a></li>
|
233
|
+
<li><a rel="gh-t1s2-15" title="Small Appliances" href="http://www.foodnetworkstore.com/small-appliances/department/91/?CCAID=FNFNDDHESA">Small Appliances</a></li>
|
234
|
+
</ul>
|
235
|
+
</div></div><div class="ft"></div>
|
236
|
+
</div>
|
237
|
+
</li>
|
238
|
+
<li class="nav-w"><a rel="gh-t1s3" class="holidays-and-parties" href="/holidays-and-parties/index.html">Holidays & Parties</a>
|
239
|
+
<div class="drop">
|
240
|
+
<div class="hd"></div><div class="bd"><div class="content clrfix">
|
241
|
+
<div class="inside clrfix">
|
242
|
+
<h3>Inside Holidays & Parties</h3><ul>
|
243
|
+
<li><a rel="gh-t1s-1" title="Valentine's Day" href="/valentines-day/package/index.html">Valentine's Day</a></li>
|
244
|
+
<li><a rel="gh-t1s-2" title="Chocolate Desserts" href="/recipes-and-cooking/valentines-day-chocolate-desserts/pictures/index.html">Chocolate Desserts</a></li>
|
245
|
+
<li><a rel="gh-t1s-3" title="Red Velvet Recipes" href="/holidays-and-parties/red-velvet-valentines-day-desserts/pictures/index.html">Red Velvet Recipes</a></li>
|
246
|
+
<li><a rel="gh-t1s-4" title="Appetizers" href="/healthy_eating/healthy-appetizer-recipes/pictures/index.html">Appetizers</a></li>
|
247
|
+
<li><a rel="gh-t1s-5" title="Cooking With Kids" href="/cooking-with-kids/package/index.html">Cooking With Kids</a></li>
|
248
|
+
</ul><ul>
|
249
|
+
<li><a rel="gh-t1s-6" title="Winter Entertaining" href="/winter-entertaining-guide/package/index.html">Winter Entertaining</a></li>
|
250
|
+
<li><a rel="gh-t1s-7" title="Award-Worthy Eats" href="/dinner-and-a-movie/package/index.html">Award-Worthy Eats</a></li>
|
251
|
+
<li><a rel="gh-t1s-8" title="Party Snacks" href="/holidays-and-parties/best-supporting-snacks/pictures/index.html">Party Snacks</a></li>
|
252
|
+
<li><a rel="gh-t1s-9" title="Easy Desserts" href="/recipes-and-cooking/winter-desserts-in-under-an-hour/pictures/index.html">Easy Desserts</a></li>
|
253
|
+
<li><a rel="gh-t1s-10" title="Wine-Friendly Meals" href="/celebrate-with-wine/package/index.html">Wine-Friendly Meals</a></li>
|
254
|
+
</ul><ul class="cta">
|
255
|
+
<li class="cta-title">More in:</li>
|
256
|
+
<li><a title="Holidays and Parties" href="/holidays-and-parties/index.html">Holidays & Parties</a></li>
|
257
|
+
<li class="last"><a href="http://www.foodnetwork.com/recipes-and-cooking/index.html">Recipes & Cooking</a></li>
|
258
|
+
</ul>
|
259
|
+
</div><div class="shows clrfix">
|
260
|
+
<h3>Shows</h3><ul>
|
261
|
+
<li><a rel="gh-t1s-11" title="Down Home with the Neelys" href="/down-home-with-the-neelys/index.html">Down Home with the Neelys</a></li>
|
262
|
+
<li><a rel="gh-t1s-12" title="Paula's Party" href="/paulas-party/index.html">Paula's Party</a></li>
|
263
|
+
<li class="more"><a title="More Shows" href="/shows/index.html">More Shows</a></li>
|
264
|
+
</ul>
|
265
|
+
</div><div class="products clrfix"><h3>Shop Our Store</h3></div><ul>
|
266
|
+
<li><a rel="gh-t1s1-13" title="Pat & Gina Neely Products" href="http://www.foodnetworkstore.com/pat-and-gina-neely/talent/4294878560/?CCAID=FNFNDDHPNEE">The Neelys' Products</a></li>
|
267
|
+
<li><a rel="gh-t1s1-14" title="Cookbooks" href="http://www.foodnetworkstore.com/cookbooks/department/96/?CCAID=FNFNDDHPCKB">Cookbooks</a></li>
|
268
|
+
</ul><ul>
|
269
|
+
<li><a rel="gh-t1s2-15" title="Cookware" href="http://www.foodnetworkstore.com/cookware/department/1949/?CCAID=FNFNDDHPCKWR">Cookware</a></li>
|
270
|
+
<li><a rel="gh-t1s2-16" title="Gourmet Foods" href="http://www.foodnetworkstore.com/gourmet-foods/department/107/?CCAID=FNFNDDHPGOUR">Gourmet Foods</a></li>
|
271
|
+
</ul>
|
272
|
+
</div></div><div class="ft"></div>
|
273
|
+
</div>
|
274
|
+
</li>
|
275
|
+
<li class="nav-e"><a rel="gh-t1s4" class="in-season-now" href="/in-season-now/index.html">In Season Now</a>
|
276
|
+
<div class="drop">
|
277
|
+
<div class="hd"></div><div class="bd"><div class="content clrfix">
|
278
|
+
<div class="inside clrfix">
|
279
|
+
<h3>Inside In Season Now</h3><ul>
|
280
|
+
<li><a rel="gh-t1s-1" title="Winter Produce" href="/winter-produce-guide/package/index.html">Winter Produce</a></li>
|
281
|
+
<li><a rel="gh-t1s-2" title="Quick Side Dishes" href="/recipes-and-cooking/easy-winter-side-dish-recipes/pictures/index.html">Quick Side Dishes</a></li>
|
282
|
+
<li><a rel="gh-t1s-3" title="Grill-Pan Dinners" href="/recipes-and-cooking/great-grill-pan-dinners/pictures/index.html">Grill-Pan Dinners</a></li>
|
283
|
+
<li><a rel="gh-t1s-4" title="Homemade Soups" href="/recipes-and-cooking/simple-soup-recipes/pictures/index.html">Homemade Soups</a></li>
|
284
|
+
<li><a rel="gh-t1s-5" title="Comfort Foods" href="/comfort-foods/package/index.html">Comfort Foods</a></li>
|
285
|
+
</ul><ul>
|
286
|
+
<li><a rel="gh-t1s-6" title="Weeknight Dinners" href="/5-weeknight-dinners-winter/package/index.html">Weeknight Dinners</a></li>
|
287
|
+
<li><a rel="gh-t1s-7" title="Winter Entertaining" href="/winter-entertaining-guide/package/index.html">Winter Entertaining</a></li>
|
288
|
+
<li><a rel="gh-t1s-8" title="Hearty Chili" href="/recipes-and-cooking/cold-weather-chili-recipes/pictures/index.html">Hearty Chili</a></li>
|
289
|
+
<li><a rel="gh-t1s-9" title="Casseroles" href="/recipes-and-cooking/crowd-pleasing-casseroles/pictures/index.html">Casseroles</a></li>
|
290
|
+
<li><a rel="gh-t1s-10" title="Quick Desserts" href="/recipes-and-cooking/winter-desserts-in-under-an-hour/pictures/index.html">Winter Desserts</a></li>
|
291
|
+
</ul><ul class="cta">
|
292
|
+
<li class="cta-title">More in:</li>
|
293
|
+
<li><a title="In Season Now" href="/in-season-now/index.html">In Season Now</a></li>
|
294
|
+
<li class="last"><a href="http://www.foodnetwork.com/recipes-and-cooking/index.html">Recipes & Cooking</a></li>
|
295
|
+
</ul>
|
296
|
+
</div><div class="shows clrfix">
|
297
|
+
<h3>Shows</h3><ul>
|
298
|
+
<li><a rel="gh-t1s-11" title="The Cooking Loft" href="/the-cooking-loft/index.html">The Cooking Loft</a></li>
|
299
|
+
<li><a rel="gh-t1s-12" title="Jamie at Home" href="/jamie-at-home/index.html">Jamie at Home</a></li>
|
300
|
+
<li class="more"><a title="More Shows" href="/shows/index.html">More Shows</a></li>
|
301
|
+
</ul>
|
302
|
+
</div><div class="products clrfix"><h3>Shop Our Store</h3></div><ul>
|
303
|
+
<li><a rel="gh-t1s1-13" title="Alton Brown's Products" href="http://www.foodnetworkstore.com/alton-brown/talent/4294878122/?CCAID=FNFNDDISAB">Alton Brown's Products</a></li>
|
304
|
+
<li><a rel="gh-t1s1-14" title="Cookbooks" href="http://www.foodnetworkstore.com/cookbooks/department/96/?CCAID=FNFNDDISCKB">Cookbooks</a></li>
|
305
|
+
</ul><ul>
|
306
|
+
<li><a rel="gh-t1s2-15" title="Gift Ideas" href="http://www.foodnetworkstore.com/gift-ideas/?CCAID=FNFNDDISGIFT">Gift Ideas</a></li>
|
307
|
+
<li><a rel="gh-t1s2-16" title="Bakeware" href="http://www.foodnetworkstore.com/bakeware/department/102/?CCAID=FNFNDDISBKW">Bakeware</a></li>
|
308
|
+
</ul>
|
309
|
+
</div></div><div class="ft"></div>
|
310
|
+
</div>
|
311
|
+
</li>
|
312
|
+
<li class="nav-e"><a rel="gh-t1s5-1" class="recipes-tv" href="/food/programdaily/0,,FOOD_32078__EST,00.html">Recipes on TV</a>
|
313
|
+
<div class="drop">
|
314
|
+
<div class="hd"></div><div class="bd"><div class="content clrfix">
|
315
|
+
<div class="inside clrfix">
|
316
|
+
<h3>Inside Recipes on TV</h3><ul>
|
317
|
+
<li><a rel="gh-t1s-1" title="Paula Deen" href="/paula-deen/recipes/index.html">Paula Deen</a></li>
|
318
|
+
<li><a rel="gh-t1s-2" title="Rachael Ray" href="/rachael-ray/recipes/index.html">Rachael Ray</a></li>
|
319
|
+
<li><a rel="gh-t1s-3" title="The Neelys" href="/patrick-and-gina-neely/recipes/index.html">The Neelys</a></li>
|
320
|
+
<li><a rel="gh-t1s-4" title="Sandra Lee" href="/sandra-lee/recipes/index.html">Sandra Lee</a></li>
|
321
|
+
</ul><ul>
|
322
|
+
<li><a rel="gh-t1s-5" title="Giada De Laurentiis" href="/giada-de-laurentiis/recipes/index.html">Giada De Laurentiis</a></li>
|
323
|
+
<li><a rel="gh-t1s-6" title="Bobby Flay" href="/bobby-flay/recipes/index.html">Bobby Flay</a></li>
|
324
|
+
<li><a rel="gh-t1s-7" title="Ina Garten" href="/ina-garten/recipes/index.html">Ina Garten</a></li>
|
325
|
+
<li><a rel="gh-t1s-8" title="Guy Fieri" href="/guy-fieri/recipes/index.html">Guy Fieri</a></li>
|
326
|
+
</ul>
|
327
|
+
</div><div class="shows clrfix">
|
328
|
+
<h3>Shows</h3><ul>
|
329
|
+
<li><a rel="gh-t1s-9" title="Barefoot Contessa" href="/barefoot-contessa/index.html">Barefoot Contessa</a></li>
|
330
|
+
<li><a rel="gh-t1s-10" title="Paula's Home Cooking" href="/paulas-home-cooking/index.html">Paula's Home Cooking</a></li>
|
331
|
+
<li class="more"><a title="More Shows" href="/shows/index.html">More Shows</a></li>
|
332
|
+
</ul>
|
333
|
+
</div><div class="products clrfix"><h3>Shop Our Store</h3></div><ul>
|
334
|
+
<li><a rel="gh-t1s1-11" title="Chef's Products" href="http://www.foodnetworkstore.com/all-chefs-and-shows/?CCAID=FNFNDDREAC">Chef's Products</a></li>
|
335
|
+
<li><a rel="gh-t1s1-12" title="Cookbooks" href="http://www.foodnetworkstore.com/cookbooks/department/96/?CCAID=FNFNDDRECKB">Cookbooks</a></li>
|
336
|
+
</ul><ul>
|
337
|
+
<li><a rel="gh-t1s2-13" title="Bakeware" href="http://www.foodnetworkstore.com/bakeware/department/102/?CCAID=FNFNDDREBKW">Bakeware</a></li>
|
338
|
+
<li><a rel="gh-t1s2-14" title="Grocery Coupons" href="/free-money-saving-coupons/package/index.html">Grocery Coupons</a></li>
|
339
|
+
</ul>
|
340
|
+
</div></div><div class="ft"></div>
|
341
|
+
</div>
|
342
|
+
</li>
|
343
|
+
<li class="nav-e"><a rel="gh-t1s5-2" class="chef-recipes" href="/chefs/index.html">Chef Recipes</a>
|
344
|
+
<div class="drop">
|
345
|
+
<div class="hd"></div><div class="bd"><div class="content clrfix">
|
346
|
+
<div class="inside clrfix">
|
347
|
+
<h3>Inside Chef Recipes</h3><ul>
|
348
|
+
<li><a rel="gh-t1s-1" title="Paula Deen" href="/paula-deen/recipes/index.html">Paula Deen</a></li>
|
349
|
+
<li><a rel="gh-t1s-2" title="Rachael Ray" href="/rachael-ray/recipes/index.html">Rachael Ray</a></li>
|
350
|
+
<li><a rel="gh-t1s-3" title="The Neelys" href="/patrick-and-gina-neely/recipes/index.html">The Neelys</a></li>
|
351
|
+
<li><a rel="gh-t1s-4" title="Sandra Lee" href="/sandra-lee/recipes/index.html">Sandra Lee</a></li>
|
352
|
+
</ul><ul>
|
353
|
+
<li><a rel="gh-t1s-5" title="Giada De Laurentiis" href="/giada-de-laurentiis/recipes/index.html">Giada De Laurentiis</a></li>
|
354
|
+
<li><a rel="gh-t1s-6" title="Bobby Flay" href="/bobby-flay/recipes/index.html">Bobby Flay</a></li>
|
355
|
+
<li><a rel="gh-t1s-7" title="Ina Garten" href="/ina-garten/recipes/index.html">Ina Garten</a></li>
|
356
|
+
<li><a rel="gh-t1s-8" title="Guy Fieri" href="/guy-fieri/recipes/index.html">Guy Fieri</a></li>
|
357
|
+
</ul>
|
358
|
+
</div><div class="shows clrfix">
|
359
|
+
<h3>Shows</h3><ul>
|
360
|
+
<li><a rel="gh-t1s-9" title="Good Eats with Alton Brown" href="/good-eats/index.html">Good Eats with Alton Brown</a></li>
|
361
|
+
<li><a rel="gh-t1s-10" title="Secrets of a Restaurant chef" href="/secrets-of-a-restaurant-chef/index.html">Secrets of a Restaurant Chef</a></li>
|
362
|
+
<li class="more"><a title="More Shows" href="/shows/index.html">More Shows</a></li>
|
363
|
+
</ul>
|
364
|
+
</div><div class="products clrfix"><h3>Shop Our Store</h3></div><ul>
|
365
|
+
<li><a rel="gh-t1s1-11" title="Chef's Products" href="http://www.foodnetworkstore.com/all-chefs-and-shows/?CCAID=FNFNDDCRAC">Chef's Products</a></li>
|
366
|
+
<li><a rel="gh-t1s1-12" title="Cookbooks" href="http://www.foodnetworkstore.com/cookbooks/department/96/?CCAID=FNFNDDCRCKB">Cookbooks</a></li>
|
367
|
+
</ul><ul>
|
368
|
+
<li><a rel="gh-t1s2-13" title="Cookware" href="http://www.foodnetworkstore.com/cookware/department/1949/?CCAID=FNFNDDCRCKW">Cookware</a></li>
|
369
|
+
<li><a rel="gh-t1s2-14" title="Grocery Coupons" href="/free-money-saving-coupons/package/index.html">Grocery Coupons</a></li>
|
370
|
+
</ul>
|
371
|
+
</div></div><div class="ft"></div>
|
372
|
+
</div>
|
373
|
+
</li>
|
374
|
+
|
375
|
+
</ul>
|
376
|
+
|
377
|
+
<ul id="sub-nav-shows" class="shows-nav">
|
378
|
+
<li><a rel="gh-t2s1" href="/worst-cooks-in-america/index.html">Worst Cooks in America</a></li>
|
379
|
+
<!-- <li><a rel="gh-t2s2" href="/barefoot-contessa/index.html">Barefoot Contessa</a></li>-->
|
380
|
+
<li><a rel="gh-t2s3" href="/diners-drive-ins-and-dives/index.html">Diners, Drive-ins and Dives</a></li>
|
381
|
+
<li><a rel="gh-t2s4" href="/giada-at-home/index.html">Giada at Home</a></li>
|
382
|
+
<li><a rel="gh-t2s5" href="/paulas-best-dishes/index.html">Paula's Best Dishes</a></li>
|
383
|
+
<li><a rel="gh-t2s6" href="/local/index.html">Restaurant Guide</a></li>
|
384
|
+
<li class="nav-e"><a href="#">Shows A-Z</a>
|
385
|
+
|
386
|
+
<div class="drop">
|
387
|
+
<div class="hd"><!-- FOR CAPS --></div>
|
388
|
+
<div class="bd">
|
389
|
+
<div class="content clrfix">
|
390
|
+
<div class="shows-az clrfix">
|
391
|
+
<h3>Shows A-Z<span>Close</span></h3>
|
392
|
+
|
393
|
+
<ul>
|
394
|
+
<li><a href="/40-a-day/index.html">$40 a Day</a></li>
|
395
|
+
<li><a href="/24-hour-restaurant-battle/index.html">24 Hour Restaurant Battle</a></li>
|
396
|
+
<li><a href="/30-minute-meals/index.html">30 Minute Meals</a></li>
|
397
|
+
<li><a href="/5-ingredient-fix/index.html">5 Ingredient Fix</a></li>
|
398
|
+
<li><a href="/aarti-party/index.html">Aarti Party</a></li>
|
399
|
+
<li><a href="/ace-of-cakes/index.html">Ace of Cakes</a></li>
|
400
|
+
<li><a href="/alexs-day-off/index.html">Alex's Day Off</a></li>
|
401
|
+
<li><a href="/all-american-festivals/index.html">All-American Festivals</a></li>
|
402
|
+
<li><a href="/ask-aida/index.html">Ask Aida</a></li>
|
403
|
+
<li><a href="/barefoot-contessa/index.html">Barefoot Contessa</a></li>
|
404
|
+
<li><a href="/bbq-with-bobby-flay/index.html">BBQ with Bobby Flay</a></li>
|
405
|
+
<li><a href="/behind-the-bash/index.html">Behind the Bash</a></li>
|
406
|
+
<li><a href="/big-daddys-house/index.html">Big Daddy's House</a></li>
|
407
|
+
<li><a href="/bobby-flays-barbecue-addiction/index.html">Bobby Flay's Barbecue Addiction</a></li>
|
408
|
+
<li><a href="/boy-meets-grill/index.html">Boy Meets Grill</a></li>
|
409
|
+
<li><a href="/chef-hunter/index.html">Chef Hunter</a></li>
|
410
|
+
<li><a href="/chefs-vs-city/index.html">Chefs vs. City</a></li>
|
411
|
+
<li><a href="/chic-easy/index.html">Chic & Easy</a></li>
|
412
|
+
<li><a href="/chopped/index.html">Chopped</a></li>
|
413
|
+
<li><a href="/cooking-for-real/index.html">Cooking for Real</a></li>
|
414
|
+
<li><a href="/crave/index.html">Crave</a></li>
|
415
|
+
<li><a href="/cupcake-wars/index.html">Cupcake Wars </a></li>
|
416
|
+
<li><a href="/dear-food-network/index.html">Dear Food Network</a></li>
|
417
|
+
<li><a href="/dessert-first/index.html">Dessert First</a></li>
|
418
|
+
<li><a href="/diners-drive-ins-and-dives/index.html">Diners, Drive-ins and Dives</a></li>
|
419
|
+
<li><a href="/dinner-impossible/index.html">Dinner: Impossible</a></li>
|
420
|
+
<li><a href="/down-home-with-the-neelys/index.html">Down Home With the Neelys</a></li>
|
421
|
+
<li><a href="/easy-entertaining-with-michael-chiarello/index.html">Easy Entertaining with Michael Chiarello</a></li>
|
422
|
+
<li><a href="/emeril-live/index.html">Emeril Live</a></li>
|
423
|
+
<li><a href="/everyday-italian/index.html">Everyday Italian</a></li>
|
424
|
+
<li><a href="/extreme-chef/index.html">Extreme Chef</a></li>
|
425
|
+
<li><a href="/extreme-cuisine-with-jeff-corwin/index.html">Extreme Cuisine with Jeff Corwin</a></li>
|
426
|
+
<li><a href="/fat-chef/index.html">Fat Chef</a></li>
|
427
|
+
<li><a href="/feasting-on-waves/index.html">Feasting on Asphalt/Waves</a></li>
|
428
|
+
<li><a href="/food-detectives/index.html">Food Detectives</a></li>
|
429
|
+
<li><a href="/food-feuds/index.html">Food Feuds</a></li>
|
430
|
+
<li><a href="/food-network-challenge/index.html">Food Network Challenge</a></li>
|
431
|
+
<li><a href="/food-network-specials/index.html">Food Network Specials</a></li>
|
432
|
+
<li><a href="/the-next-food-network-star/index.html">Food Network Star</a></li>
|
433
|
+
<li><a href="/foodnation-with-bobby-flay/index.html">FoodNation With Bobby Flay</a></li>
|
434
|
+
<li><a href="/giada-at-home/index.html">Giada at Home</a></li>
|
435
|
+
<li><a href="/giadas-weekend-getaways/index.html">Giada's Weekend Getaways</a></li>
|
436
|
+
<li><a href="/glutton-for-punishment/index.html">Glutton for Punishment</a></li>
|
437
|
+
<li><a href="/good-deal-with-dave-lieberman/index.html">Good Deal with Dave Lieberman</a></li>
|
438
|
+
<li><a href="/good-eats/index.html">Good Eats</a></li>
|
439
|
+
<li><a href="/grill-it-with-bobby-flay/index.html">Grill It! with Bobby Flay</a></li>
|
440
|
+
<li><a href="/guy-off-the-hook/index.html">Guy Off the Hook</a></li>
|
441
|
+
<li><a href="/guys-big-bite/index.html">Guy's Big Bite </a></li>
|
442
|
+
<li><a href="/ham-on-the-street/index.html">Ham on the Street</a></li>
|
443
|
+
<li><a href="/have-cake-will-travel/index.html">Have Cake, Will Travel</a></li>
|
444
|
+
<li><a href="/have-fork-will-travel/index.html">Have Fork, Will Travel</a></li>
|
445
|
+
<li><a href="/healthy-appetite-with-ellie-krieger/index.html">Healthy Appetite with Ellie Krieger </a></li>
|
446
|
+
<li><a href="/heat-seekers/index.html">Heat Seekers</a></li>
|
447
|
+
<li><a href="/heavyweights/index.html">Heavyweights</a></li>
|
448
|
+
<li><a href="/how-to-boil-water/index.html">How To Boil Water</a></li>
|
449
|
+
<li><a href="/howd-that-get-on-my-plate/index.html">How'd That Get On My Plate?</a></li>
|
450
|
+
<li><a href="/hungry-detective/index.html">Hungry Detective</a></li>
|
451
|
+
<li><a href="/hungry-girl/index.html">Hungry Girl</a></li>
|
452
|
+
<li><a href="/ice-brigade/index.html">Ice Brigade</a></li>
|
453
|
+
<li><a href="/inside-dish/index.html">Inside Dish</a></li>
|
454
|
+
<li><a href="/iron-chef-america/index.html">Iron Chef America</a></li>
|
455
|
+
<li><a href="/jamie-at-home/index.html">Jamie at Home</a></li>
|
456
|
+
<li><a href="/kid-in-a-candy-store/index.html">Kid in a Candy Store</a></li>
|
457
|
+
<li><a href="/last-cake-standing/index.html">Last Cake Standing</a></li>
|
458
|
+
<li><a href="/meat-potatoes/index.html">Meat & Potatoes</a></li>
|
459
|
+
<li><a href="/mexican-made-easy/index.html">Mexican Made Easy</a></li>
|
460
|
+
<li><a href="/molto-mario/index.html">Molto Mario</a></li>
|
461
|
+
<li><a href="/my-life-in-food/index.html">My Life in Food</a></li>
|
462
|
+
<li><a href="/nigella-bites/index.html">Nigella Bites </a></li>
|
463
|
+
<li><a href="/nigella-express/index.html">Nigella Express</a></li>
|
464
|
+
<li><a href="/nigella-feasts/index.html">Nigella Feasts</a></li>
|
465
|
+
<li><a href="/nigella-kitchen/index.html">Nigella Kitchen</a></li>
|
466
|
+
<li><a href="/outrageous-food/index.html">Outrageous Food</a></li>
|
467
|
+
<li><a href="/party-line-with-the-hearty-boys/index.html">Party Line with the Hearty Boys</a></li>
|
468
|
+
<li><a href="/paulas-best-dishes/index.html">Paula's Best Dishes</a></li>
|
469
|
+
<li><a href="/paulas-home-cooking/index.html">Paula's Home Cooking</a></li>
|
470
|
+
<li><a href="/paulas-party/index.html">Paula's Party</a></li>
|
471
|
+
<li><a href="/private-chefs-of-beverly-hills/index.html">Private Chefs of Beverly Hills </a></li>
|
472
|
+
<li><a href="/quick-fix-meals-with-robin-miller/index.html">Quick Fix Meals with Robin Miller</a></li>
|
473
|
+
<li><a href="/rachael-rays-tasty-travels/index.html">Rachael Ray's Tasty Travels</a></li>
|
474
|
+
<li><a href="/rachael-vs-guy-celebrity-cook-off/index.html">Rachael vs. Guy: Celebrity Cook-Off</a></li>
|
475
|
+
<li><a href="/rachaels-vacation/index.html">Rachael's Vacation</a></li>
|
476
|
+
<li><a href="/recipe-for-success/index.html">Recipe for Success</a></li>
|
477
|
+
<li><a href="/rescue-chef/index.html">Rescue Chef</a></li>
|
478
|
+
<li><a href="/restaurant-impossible/index.html">Restaurant: Impossible</a></li>
|
479
|
+
<li><a href="/road-tasted/index.html">Road Tasted </a></li>
|
480
|
+
<li><a href="/road-tasted-with-the-neelys/index.html">Road Tasted with the Neelys</a></li>
|
481
|
+
<li><a href="/roker-on-the-road/index.html">Roker on the Road</a></li>
|
482
|
+
<li><a href="/sandras-money-saving-meals/index.html">Sandra's Money Saving Meals</a></li>
|
483
|
+
<li><a href="/sandwich-king/index.html">Sandwich King</a></li>
|
484
|
+
<li><a href="/secrets-of-a-restaurant-chef/index.html">Secrets of a Restaurant Chef</a></li>
|
485
|
+
<li><a href="/semi-homemade-cooking-with-sandra-lee/index.html">Semi-Homemade Cooking</a></li>
|
486
|
+
<li><a href="/simply-delicioso-with-ingrid-hoffmann/index.html">Simply Delicioso with Ingrid Hoffmann</a></li>
|
487
|
+
<li><a href="/spice-easy/index.html">Spice & Easy</a></li>
|
488
|
+
<li><a href="/sugar-high/index.html">Sugar High</a></li>
|
489
|
+
<li><a href="/sugar-rush/index.html">Sugar Rush</a></li>
|
490
|
+
<li><a href="/sweet-genius/index.html">Sweet Genius</a></li>
|
491
|
+
<li><a href="/tailgate-warriors/index.html">Tailgate Warriors</a></li>
|
492
|
+
<li><a href="/ten-dollar-dinners-with-melissa-darabian/index.html">Ten Dollar Dinners</a></li>
|
493
|
+
<li><a href="/the-best-thing-i-ever-ate/index.html">The Best Thing I Ever Ate </a></li>
|
494
|
+
<li><a href="/the-best-thing-i-ever-made/index.html">The Best Thing I Ever Made</a></li>
|
495
|
+
<li><a href="/the-chef-jeff-project/index.html">The Chef Jeff Project</a></li>
|
496
|
+
<li><a href="/the-cooking-loft/index.html">The Cooking Loft</a></li>
|
497
|
+
<li><a href="/the-essence-of-emeril/index.html">The Essence of Emeril</a></li>
|
498
|
+
<li><a href="/the-great-food-truck-race/index.html">The Great Food Truck Race</a></li>
|
499
|
+
<li><a href="/the-next-iron-chef/index.html">The Next Iron Chef</a></li>
|
500
|
+
<li><a href="/the-pioneer-woman/index.html">The Pioneer Woman</a></li>
|
501
|
+
<li><a href="/the-secret-life-of/index.html">The Secret Life Of</a></li>
|
502
|
+
<li><a href="/throwdown-with-bobby-flay/index.html">Throwdown With Bobby Flay</a></li>
|
503
|
+
<li><a href="/tough-cookies/index.html">Tough Cookies</a></li>
|
504
|
+
<li><a href="/tylers-ultimate/index.html">Tyler's Ultimate</a></li>
|
505
|
+
<li><a href="/ultimate-recipe-showdown/index.html">Ultimate Recipe Showdown</a></li>
|
506
|
+
<li><a href="/unwrapped/index.html">Unwrapped</a></li>
|
507
|
+
<li><a href="/viva-daisy/index.html">Viva Daisy!</a></li>
|
508
|
+
<li><a href="/what-would-brian-boitano-make/index.html">What Would Brian Boitano Make?</a></li>
|
509
|
+
<li><a href="/will-work-for-food/index.html">Will Work for Food</a></li>
|
510
|
+
<li><a href="/worst-cooks-in-america/index.html">Worst Cooks in America</a></li>
|
511
|
+
</ul>
|
512
|
+
</div>
|
513
|
+
</div>
|
514
|
+
</div>
|
515
|
+
<div class="ft"><!-- FOR CAPS --></div>
|
516
|
+
</div>
|
517
|
+
</li>
|
518
|
+
</ul>
|
519
|
+
<ul id="sub-nav-chefs" class="chefs-nav">
|
520
|
+
<li><a rel="gh-t3s1" href="/giada-de-laurentiis/index.html">Giada De Laurentiis</a></li>
|
521
|
+
<li><a rel="gh-t3s2" href="/paula-deen/index.html">Paula Deen</a></li>
|
522
|
+
<li><a rel="gh-t3s3" href="/rachael-ray/index.html">Rachael Ray</a></li>
|
523
|
+
<li><a rel="gh-t3s4" href="/sandra-lee/index.html">Sandra Lee</a></li>
|
524
|
+
<li><a rel="gh-t3s5" href="/patrick-and-gina-neely/index.html">The Neelys</a></li>
|
525
|
+
<li><a rel="gh-t3s6" href="/bobby-flay/index.html">Bobby Flay</a></li>
|
526
|
+
<li><a rel="gh-t3s7" href="/guy-fieri/index.html">Guy Fieri</a></li>
|
527
|
+
<li><a rel="gh-t3s8" href="/alton-brown/index.html">Alton Brown</a></li>
|
528
|
+
<li class="nav-e"><a href="#">Chefs A-Z</a>
|
529
|
+
<div class="drop">
|
530
|
+
<div class="hd"><!-- FOR CAPS --></div>
|
531
|
+
<div class="bd">
|
532
|
+
<div class="content clrfix">
|
533
|
+
<div class="chefs-az clrfix">
|
534
|
+
<h3>Chefs A-Z<span>Close</span></h3>
|
535
|
+
|
536
|
+
<ul>
|
537
|
+
<li><a href="/aaron-mccargo-jr/index.html">Aaron McCargo, Jr.</a></li>
|
538
|
+
<li><a href="/aaron-sanchez/index.html ">Aaron Sanchez</a></li>
|
539
|
+
<li><a href="/aarti-sequeira/index.html">Aarti Sequeira</a></li>
|
540
|
+
<li><a href="/adam-gertler/index.html">Adam Gertler</a></li>
|
541
|
+
<li><a href="/aida-mollenkamp/index.html">Aida Mollenkamp</a></li>
|
542
|
+
<li><a href="/alexandra-guarnaschelli/index.html">Alexandra Guarnaschelli</a></li>
|
543
|
+
<li><a href="/alton-brown/index.html">Alton Brown</a></li>
|
544
|
+
<li><a href="/anne-burrell/index.html">Anne Burrell</a></li>
|
545
|
+
<li><a href="/anne-thornton/index.html">Anne Thornton</a></li>
|
546
|
+
<li><a href="/bob-blumer/index.html">Bob Blumer</a></li>
|
547
|
+
<li><a href="/bobby-flay/index.html">Bobby Flay</a></li>
|
548
|
+
<li><a href="/bobby-and-jamie-deen/index.html">Bobby and Jamie Deen</a></li>
|
549
|
+
<li><a href="/brian-boitano/index.html">Brian Boitano</a></li>
|
550
|
+
<li><a href="/cat-cora/index.html">Cat Cora</a></li>
|
551
|
+
<li><a href="/chris-cognac/index.html">Chris Cognac</a></li>
|
552
|
+
<li><a href="/claire-robinson/index.html">Claire Robinson</a></li>
|
553
|
+
<li><a href="/daisy-martinez/index.html">Daisy Martinez</a></li>
|
554
|
+
<li><a href="/danny-boome/index.html">Danny Boome</a></li>
|
555
|
+
<li><a href="/dave-lieberman/index.html">Dave Lieberman</a></li>
|
556
|
+
<li><a href="/duff-goldman/index.html">Duff Goldman</a></li>
|
557
|
+
<li><a href="/ellie-krieger/index.html">Ellie Krieger</a></li>
|
558
|
+
<li><a href="/emeril-lagasse/index.html">Emeril Lagasse</a></li>
|
559
|
+
<li><a href="/food-network-kitchens/index.html">Food Network Kitchens</a></li>
|
560
|
+
<li><a href="/geoffrey-zakarian/index.html">Geoffrey Zakarian</a></li>
|
561
|
+
<li><a href="/george-duran/index.html">George Duran</a></li>
|
562
|
+
<li><a href="/giada-de-laurentiis/index.html">Giada De Laurentiis</a></li>
|
563
|
+
<li><a href="/guy-fieri/index.html">Guy Fieri</a></li>
|
564
|
+
<li><a href="/ina-garten/index.html">Ina Garten</a></li>
|
565
|
+
<li><a href="/ingrid-hoffmann/index.html">Ingrid Hoffmann</a></li>
|
566
|
+
<li><a href="/jack-hourigan/index.html">Jack Hourigan</a></li>
|
567
|
+
<li><a href="/jamie-oliver/index.html">Jamie Oliver</a></li>
|
568
|
+
<li><a href="/janet-johnston/index.html">Janet Johnston</a></li>
|
569
|
+
<li><a href="/jeff-corwin/index.html">Jeff Corwin</a></li>
|
570
|
+
<li><a href="/jeff-henderson/index.html">Jeff Henderson</a></li>
|
571
|
+
<li><a href="/jeff-mauro/index.html">Jeff Mauro</a></li>
|
572
|
+
<li><a href="/jim-oconnor/index.html">Jim O'Connor</a></li>
|
573
|
+
<li><a href="/jose-garces/index.html">Jose Garces</a></li>
|
574
|
+
<li><a href="/keegan-gerhard/index.html">Keegan Gerhard</a></li>
|
575
|
+
<li><a href="/kevin-brauch/index.html">Kevin Brauch</a></li>
|
576
|
+
<li><a href="/winner-marc-forgione/index.html">Marc Forgione</a></li>
|
577
|
+
<li><a href="/marc-summers/index.html">Marc Summers</a></li>
|
578
|
+
<li><a href="/marcela-valladolid/index.html">Marcela Valladolid</a></li>
|
579
|
+
<li><a href="/mario-batali/index.html">Mario Batali</a></li>
|
580
|
+
<li><a href="/mark-dacascos/index.html">Mark Dacascos</a></li>
|
581
|
+
<li><a href="/mary-nolan/index.html">Mary Nolan</a></li>
|
582
|
+
<li><a href="/masaharu-morimoto/index.html">Masaharu Morimoto</a></li>
|
583
|
+
<li><a href="/melissa-darabian/index.html">Melissa d'Arabian</a></li>
|
584
|
+
<li><a href="/michael-chiarello/index.html">Michael Chiarello</a></li>
|
585
|
+
<li><a href="/michael-symon/index.html">Michael Symon</a></li>
|
586
|
+
<li><a href="/nigella-lawson/index.html">Nigella Lawson</a></li>
|
587
|
+
<li><a href="/patrick-and-gina-neely/index.html">Patrick and Gina Neely</a></li>
|
588
|
+
<li><a href="/paula-deen/index.html">Paula Deen</a></li>
|
589
|
+
<li><a href="/rachael-ray/index.html">Rachael Ray</a></li>
|
590
|
+
<li><a href="/rahm-fama/bio/index.html">Rahm Fama</a></li>
|
591
|
+
<li><a href="/ree-drummond/index.html">Ree Drummond</a></li>
|
592
|
+
<li><a href="/robert-irvine/index.html">Robert Irvine</a></li>
|
593
|
+
<li><a href="/robin-miller/index.html">Robin Miller</a></li>
|
594
|
+
<li><a href="/sandra-lee/index.html">Sandra Lee</a></li>
|
595
|
+
<li><a href="/scott-conant/index.html">Scott Conant</a></li>
|
596
|
+
<li><a href="/sunny-anderson/index.html">Sunny Anderson</a></li>
|
597
|
+
<li><a href="/ted-allen/index.html">Ted Allen</a></li>
|
598
|
+
<li><a href="/the-hearty-boys/index.html">The Hearty Boys</a></li>
|
599
|
+
<li><a href="/food/chefs/talent/0,1000011,FOOD_32077_3902,00.html">Tom Pizzica</a></li>
|
600
|
+
<li><a href="/tyler-florence/index.html">Tyler Florence</a></li>
|
601
|
+
<li><a href="/warren-brown/index.html">Warren Brown</a></li>
|
602
|
+
</ul>
|
603
|
+
</div>
|
604
|
+
</div>
|
605
|
+
</div>
|
606
|
+
<div class="ft"><!-- FOR CAPS --></div>
|
607
|
+
</div>
|
608
|
+
</li>
|
609
|
+
</ul>
|
610
|
+
</div>
|
611
|
+
<div class="search clrfix">
|
612
|
+
<ul class="member">
|
613
|
+
<li id="head-mrb-lnk" class="first"><a rel="gh-recipebox nofollow" href="/my-recipe-box/package/index.html">My Recipe Box</a></li>
|
614
|
+
</ul>
|
615
|
+
<form id="foodSearchForm" name="HeaderSearchForm" action="/search/delegate.do" method="get">
|
616
|
+
<div class="input">
|
617
|
+
<input name="fnSearchString" id="hd-search-input"/> <!-- FOR IE7 -->
|
618
|
+
</div>
|
619
|
+
<div class="select">
|
620
|
+
<select id="HeadSrchOpt" name="fnSearchType">
|
621
|
+
<option value="site">Entire Site</option>
|
622
|
+
<option value="recipe">Recipes</option>
|
623
|
+
<option value="products">Products</option>
|
624
|
+
</select>
|
625
|
+
</div>
|
626
|
+
<button type="submit" title="Search" id="hd-search-submit">
|
627
|
+
<span>Search</span>
|
628
|
+
</button>
|
629
|
+
</form>
|
630
|
+
</div>
|
631
|
+
</div>
|
632
|
+
</div>
|
633
|
+
</div>
|
634
|
+
|
635
|
+
<script type="text/javascript">
|
636
|
+
SNI.Food.GlobalHeader.init();
|
637
|
+
SNI.Food.Omniture.ClickTrack("#fn-hd:not(li.shop)", "Header");
|
638
|
+
SNI.Food.Omniture.ClickTrack("#fn-hd li.shop", "Shop Food Network");
|
639
|
+
</script>
|
640
|
+
<div class="iax_outer" id="pushdown_adtag"><div class="iax_inner"><script type="text/javascript">PushdownAd(1);</script></div><div id="brandscape"></div></div>
|
641
|
+
<div id="fn-bd" class="clrfix">
|
642
|
+
<div class="hd"></div>
|
643
|
+
<div id="main-bd">
|
644
|
+
<div class="wrap">
|
645
|
+
<div class="content clrfix">
|
646
|
+
|
647
|
+
<!-- /food/cda/content RECIPE-DETAIL_FOOD_9936__30733_RECIPE-DETAIL_no_ -->
|
648
|
+
|
649
|
+
<div id="fn-w" class="hrecipe"><div class="breadcrumb clrfix">
|
650
|
+
<div class="bc-links">
|
651
|
+
<a href="/">Home</a>
|
652
|
+
<span>></span>
|
653
|
+
<a href="/recipes/index.html">Recipes</a>
|
654
|
+
<span>></span>
|
655
|
+
<a href="/recipe-collections/healthy/index.html">Healthy</a>
|
656
|
+
<span>></span>
|
657
|
+
</div>
|
658
|
+
<div class="bc-desc">Roasted Asparagus Recipe</div>
|
659
|
+
</div>
|
660
|
+
<script type="text/javascript">$(".bc-desc").ellipsis();</script>
|
661
|
+
<div class="rcp-head clrfix">
|
662
|
+
<span class="sponsor-multi-logo"><script type="text/javascript">MultiLogoAd('LOGO',4);</script></span>
|
663
|
+
<h1 class="fn">Roasted Asparagus</h1><script type="text/javascript">SNI.Recipe.Title.size();</script>
|
664
|
+
<a title="Tyler Florence" href="/tyler-florence/index.html"><img width="48" height="48" alt="Tyler Florence" src="http://img.foodnetwork.com/FOOD/2008/08/13/av-tyler-florence.jpg" /></a><p class="author"><a href="/tyler-florence/index.html" title="From Food Network Kitchens">From Food Network Kitchens</a></p>
|
665
|
+
<p>Show: <a href="/how-to-boil-water/index.html">How To Boil Water</a><span class="sep">Episode: <a href="/how-to-boil-water/make-it-tonight/index.html">Make It Tonight</a></span></p>
|
666
|
+
<ul class="article-info clrfix"><li class="tags"> Recipe categories: <span class="tag"><a href="/topics/vegetables/index.html" title="Vegetables Recipes">Vegetables</a></span>, <span class="tag"><a href="/topics/asparagus/index.html" title="Asparagus Recipes">Asparagus</a></span>,
|
667
|
+
|
668
|
+
<div class="more">
|
669
|
+
<a href="javascript: void(0);" class="more-trigger">more</a>
|
670
|
+
<div class="more-tags">
|
671
|
+
<div class="hd"></div>
|
672
|
+
<div class="bd">
|
673
|
+
<ul id="recipe-filedin">
|
674
|
+
|
675
|
+
<li>Cuisine :
|
676
|
+
<a href="/topics/american/index.html">American</a>
|
677
|
+
,
|
678
|
+
<a href="/topics/_general/index.html"> General</a>
|
679
|
+
</li>
|
680
|
+
|
681
|
+
|
682
|
+
<li>Technique :
|
683
|
+
<a href="/topics/roasting/index.html">Roasting</a>
|
684
|
+
</li>
|
685
|
+
|
686
|
+
|
687
|
+
|
688
|
+
|
689
|
+
|
690
|
+
|
691
|
+
|
692
|
+
|
693
|
+
|
694
|
+
|
695
|
+
</ul>
|
696
|
+
</div>
|
697
|
+
<div class="ft"></div>
|
698
|
+
</div>
|
699
|
+
<script type="text/javascript">
|
700
|
+
SNI.Food.ArticleInfo.moreTags();
|
701
|
+
</script> </li></ul>
|
702
|
+
</div>
|
703
|
+
|
704
|
+
<ul class="tabnav clrfix"><li class="sel">
|
705
|
+
<span class="lgbtn-lfcap"></span>
|
706
|
+
<span class="lgbtn-text">recipe</span>
|
707
|
+
<span class="lgbtn-rtcap"></span>
|
708
|
+
</li>
|
709
|
+
<li>
|
710
|
+
<a href="/recipes/tyler-florence/roasted-asparagus-recipe/reviews/index.html">
|
711
|
+
<span class="lgbtn-lfcap"></span>
|
712
|
+
<span class="lgbtn-text">ratings & reviews<span>(60)</span></span>
|
713
|
+
<span class="lgbtn-rtcap"></span>
|
714
|
+
</a>
|
715
|
+
</li>
|
716
|
+
</ul>
|
717
|
+
|
718
|
+
<div id="recipe-lead" class="clrfix">
|
719
|
+
<div id="recipe-lead-wrap">
|
720
|
+
<img id="recipe-lead-th" class="photo" height="120" width="160" alt="Picture of Roasted Asparagus Recipe" src="http://img.foodnetwork.com/FOOD/2009/01/13/vday_roastedasparagus4854_s4x3_med.jpg">
|
721
|
+
<cite>Photo: Roasted Asparagus Recipe</cite>
|
722
|
+
<a id="recipe-image" class="click-mask" href="http://img.foodnetwork.com/FOOD/2009/01/13/vday_roastedasparagus4854_s4x3_lg.jpg" title="Expand this picture" rel="rpe"><!--[if IE]><span class="stupid-ie-mask"></span><![endif]--><span class="btn"></span></a>
|
723
|
+
</div>
|
724
|
+
<script type="text/javascript">SNI.Recipe.ImageLead();</script>
|
725
|
+
<script type="text/javascript">SNI.Food.Omniture.ClickTrack("#recipe-lead-wrap", "Recipe Photo Enlarge");</script>
|
726
|
+
<div id="recipe-meta"><div class="rm-block lead hreview-aggregate review"><div class="rating-box rating value-title stars5" title="5">
|
727
|
+
<span>Rated 5 stars out of 5</span>
|
728
|
+
</div>
|
729
|
+
<ul>
|
730
|
+
<li class="rateomn">
|
731
|
+
<a href="/recipes/tyler-florence/roasted-asparagus-recipe/reviews/index.html" rel="rateit">
|
732
|
+
<strong>Rate This Recipe</strong></a>
|
733
|
+
</li>
|
734
|
+
<script type="text/javascript">
|
735
|
+
SNI.Food.Omniture.ClickTrack(".rateomn", "FOOD : Rate It");
|
736
|
+
</script>
|
737
|
+
<li class="cta count"><a href="/recipes/tyler-florence/roasted-asparagus-recipe/reviews/index.html#user-reviews-top" rel="readrvs">Read 60 Reviews</a></li>
|
738
|
+
<script type="text/javascript">
|
739
|
+
SNI.Food.Omniture.ClickTrack("#recipe-meta .cta", "FOOD : Read Reviews");
|
740
|
+
</script></div><div class="rm-block">
|
741
|
+
<dl class="border">
|
742
|
+
<dt class="head time">Total Time: </dt>
|
743
|
+
<dd class="head duration clrfix"><span class="value-title rspec-value-small" title="PT0H25M">25 min</span></dd>
|
744
|
+
<dt>Prep</dt>
|
745
|
+
<dd class="prepTime clrfix"><span class="value-title rspec-value-small" title="PT0H5M">5 min</span></dd> <dt>Inactive</dt>
|
746
|
+
<dd class="clrfix"><span class="value-title rspec-value-small" title="PT0H10M">10 min</span></dd> <dt>Cook</dt>
|
747
|
+
<dd class="cookTime clrfix"><span class="value-title rspec-value-small" title="PT0H10M">10 min</span></dd> </dl>
|
748
|
+
</div>
|
749
|
+
<div class="rm-block"> <dl class="border">
|
750
|
+
<dt class="head yield">Yield:</dt>
|
751
|
+
<dd class="clrfix">4 servings </dd>
|
752
|
+
</dl>
|
753
|
+
<dl>
|
754
|
+
<dt class="head level">Level:</dt>
|
755
|
+
<dd class="clrfix">Easy</dd>
|
756
|
+
</dl>
|
757
|
+
</div> </div> <!-- /recipe-meta -->
|
758
|
+
</div> <!-- /recipe-lead --><div class="w-inner"><div class="rcp-tools clrfix">
|
759
|
+
<!--[if IE]>
|
760
|
+
<span class="mask4-tl"></span><span class="mask4-tr"></span><span class="mask4-bl"></span><span class="mask4-br"></span>
|
761
|
+
<![endif]-->
|
762
|
+
|
763
|
+
<ul>
|
764
|
+
<li class="tb-print clrfix"><a rel="rt-1 nofollow" target="_blank" href="/food/cda/recipe_print/0,1946,FOOD_9936_30733_RECIPE-PRINT-FULL-PAGE-FORMATTER,00.html">Print Recipe</a></li>
|
765
|
+
<li class="kitchen clrfix"><a rel="rt-2" href="#dialog" name="modal">Full-Page View</a></li>
|
766
|
+
<li class="save-rcp clrfix"><a rel="rt-3 nofollow" href="#">Save to My Recipe Box</a></li>
|
767
|
+
<li class="review clrfix"><a rel="rt-4" href="/recipes/tyler-florence/roasted-asparagus-recipe/reviews/index.html">Review Recipe</a></li>
|
768
|
+
<li id="tb-email" class="email clrfix"></li>
|
769
|
+
<li id="tb-share" class="share clrfix"></li>
|
770
|
+
</ul>
|
771
|
+
|
772
|
+
<ul class="plain">
|
773
|
+
<li id="tb-tweet" class="tweet"></li>
|
774
|
+
<li class="social fb-like" id="tb-facebook"></li>
|
775
|
+
</ul>
|
776
|
+
|
777
|
+
<div id="add-to-mrb">
|
778
|
+
<div class="hd"><span class="close">x</span></div>
|
779
|
+
<div class="bd">
|
780
|
+
<h3>Save To My Recipe Box</h3>
|
781
|
+
<form action="/app/food/mrb/myrecipes/xml/addPublicRecipeWrapper.do" method="post">
|
782
|
+
<fieldset>
|
783
|
+
<label>Save To</label>
|
784
|
+
<select id="mrb-folders" name="folderList">
|
785
|
+
<option class="select-title">Select Folder:</option>
|
786
|
+
<option selected="selected" value="allMyRecipes">All My Recipes</option>
|
787
|
+
</select>
|
788
|
+
</fieldset>
|
789
|
+
<fieldset>
|
790
|
+
<label>Or Create New Folder</label>
|
791
|
+
<div class="text-box"><span><input type="text" name="newFolderName" class="text" maxlength="20" /></span></div>
|
792
|
+
<p class="minor">Please limit to 20 characters</p>
|
793
|
+
<input type="hidden" name="recipe_soi" value="160482" />
|
794
|
+
|
795
|
+
</fieldset>
|
796
|
+
<div class="loading">
|
797
|
+
<p>Saving Recipe</p>
|
798
|
+
<img src="http://images.foodnetwork.com/webfood/fn20/imgs/fn-loader.gif" alt="Adding Recipe" width="30" height="30">
|
799
|
+
</div>
|
800
|
+
<p class="form-submit"><button class="button" type="submit"><span>Add</span></button> <span class="cancel">Or <a rel="nofollow" href="#">Do Not Add</a></span></p>
|
801
|
+
</form>
|
802
|
+
|
803
|
+
<div class="success">
|
804
|
+
<p><strong>Success</strong></p>
|
805
|
+
<p>This recipe was saved to your <span class="destination">Folder_Name</span> folder.</p>
|
806
|
+
<p class="minor"><input type="checkbox" id="show_mrb_success" /> <label for="show_mrb_success">Do not show this message again</label></p>
|
807
|
+
<button class="button close" type="submit"><span>Close</span></button>
|
808
|
+
</div>
|
809
|
+
</div>
|
810
|
+
<div class="ft"></div>
|
811
|
+
</div>
|
812
|
+
|
813
|
+
<div id="mrb-logged-out">
|
814
|
+
<div class="hd"><span class="close">x</span></div>
|
815
|
+
<div class="bd">
|
816
|
+
<h3>Save To My Recipe Box</h3>
|
817
|
+
|
818
|
+
|
819
|
+
<p><strong>Please sign in to save this recipe to your Recipe Box!!</strong></p>
|
820
|
+
<form method="post" action="">
|
821
|
+
<p class="sign-in"><a class="button" href="javascript:document.location=SNI.Community.UR.getLoginLink()+'?DEST_URL='+escape(document.location.href);" /><span>Sign In</span></a> or <a href="javascript:document.location=SNI.Community.UR.getLoginLink()+'?DEST_URL='+escape(SNI.Community.mainSiteDomain+'/app/food/mrb/myrecipes/index.do?applicationId=MY-RECIPE-BOX');" />Create Your Recipe Box</a></p>
|
822
|
+
</form>
|
823
|
+
</div>
|
824
|
+
<div class="ft"></div>
|
825
|
+
|
826
|
+
</div>
|
827
|
+
|
828
|
+
<div id="email-a-friend"></div>
|
829
|
+
|
830
|
+
<script type="text/javascript">
|
831
|
+
SNI.Util.Toolbar();
|
832
|
+
SNI.Food.RecipeTools.init();
|
833
|
+
</script>
|
834
|
+
|
835
|
+
</div> <!-- /recipe-tools -->
|
836
|
+
<script type="text/javascript">
|
837
|
+
SNI.Food.Omniture.ClickTrack(".rcp-tools", "FOOD : Recipe Tools");
|
838
|
+
</script><!-- Endeca request http://searchServices.scrippsnetworks.com/food/service/guideModuleAggregator/xml/RECIPE-30733-4,0.xml -->
|
839
|
+
<div class="mod-wrap">
|
840
|
+
<div class="mod">
|
841
|
+
<h4 class="graphic"><a href="/valentines-day/package/index.html " title="Romantic"><img src="http://img.foodnetwork.com/FOOD/2010/02/03/valentines_banner_s186x60.jpg" alt="Romantic" width="186" height="60"><span class="mask4-tl"></span><span class="mask4-tr"></span></a></h4>
|
842
|
+
<ul>
|
843
|
+
<li><a href="/recipes-and-cooking/valentines-day-chocolate-desserts/pictures/index.html" title="Top Chocolate Desserts">Top Chocolate Desserts</a></li><li><a href="/recipes-and-cooking/make-it-together/pictures/index.html" title="Valentine's Day Menu">Valentine's Day Menu</a></li><li><a href="/holidays-and-parties/red-velvet-valentines-day-desserts/pictures/index.html" title="Red Velvet Desserts">Red Velvet Desserts</a></li>
|
844
|
+
<li class="jump"><a href="/valentines-day/package/index.html " title="Romantic">More</a></li>
|
845
|
+
</ul>
|
846
|
+
<!--[if lt IE 9]><span class="mask4-tl"></span><span class="mask4-tr"></span><span class="mask4-bl"></span><span class="mask4-br"></span><![endif]-->
|
847
|
+
</div>
|
848
|
+
<!--[if lt IE 9]><span class="mask4-tl"></span><span class="mask4-tr"></span><span class="mask4-bl"></span><span class="mask4-br"></span><![endif]-->
|
849
|
+
</div>
|
850
|
+
</div><div id="boxes">
|
851
|
+
<div id="dialog" class="window">
|
852
|
+
<div class="kv-header">
|
853
|
+
<div class="title-wrap">
|
854
|
+
<h1 class="kv_title"></h1>
|
855
|
+
<div class="sponsor-logo"></div>
|
856
|
+
<div class="timer-close">
|
857
|
+
<span class="close-btn-wrap"><a href="javascript:void(0);" class="close"/></a></span>
|
858
|
+
|
859
|
+
<button class="button timer-info" onclick="SNI.Recipe.KitchenView.openTimerForm(this)"><span>Add Timer</span></button>
|
860
|
+
|
861
|
+
<dl class="dd-list">
|
862
|
+
<dd class="timer-details">
|
863
|
+
|
864
|
+
<div class="dd-hd"></div>
|
865
|
+
<div class="dd-bd">
|
866
|
+
|
867
|
+
<label for="timerName">Timer Name:</label>
|
868
|
+
<input type="text" id="timerName" maxlength="25"/>
|
869
|
+
<span class="warning">25 Characters Max</span>
|
870
|
+
|
871
|
+
<h3>Enter Time:</h3>
|
872
|
+
<div class="add-timer">
|
873
|
+
<div class="add-time hours">
|
874
|
+
<a class="up" href="javascript:void(0);" onclick="SNI.Recipe.KitchenView.incrementHours(1)"></a>
|
875
|
+
<input class="timer-data" onblur="SNI.Recipe.KitchenView.checkForBlankField(this)" onkeyup="SNI.Recipe.KitchenView.stripAlphaChars(this, this.value)" type="text" id="timerHours" maxlength="2" value="00" />
|
876
|
+
<a class="down" href="javascript:void(0);" onclick="SNI.Recipe.KitchenView.incrementHours(-1)"></a>
|
877
|
+
</div>
|
878
|
+
<div class="add-time divider"><span>:</span></div>
|
879
|
+
<div class="add-time mins">
|
880
|
+
<a class="up" href="javascript:void(0);" onclick="SNI.Recipe.KitchenView.incrementMinutes(1)"></a>
|
881
|
+
<input class="timer-data" onblur="SNI.Recipe.KitchenView.checkForBlankField(this)" onkeyup="SNI.Recipe.KitchenView.stripAlphaChars(this, this.value)" type="text" id="timerMins" maxlength="2" value="00" />
|
882
|
+
<a class="down" href="javascript:void(0);" onclick="SNI.Recipe.KitchenView.incrementMinutes(-1)"></a>
|
883
|
+
</div>
|
884
|
+
<div class="add-time divider"><span>:</span></div>
|
885
|
+
<div class="add-time secs">
|
886
|
+
<a class="up" href="javascript:void(0);" onclick="SNI.Recipe.KitchenView.incrementSeconds(1)"></a>
|
887
|
+
<input class="timer-data" onblur="SNI.Recipe.KitchenView.checkForBlankField(this)" onkeyup="SNI.Recipe.KitchenView.stripAlphaChars(this, this.value)" type="text" id="timerSecs" maxlength="2" value="00" />
|
888
|
+
<a class="down" href="javascript:void(0);" onclick="SNI.Recipe.KitchenView.incrementSeconds(-1)"></a>
|
889
|
+
</div>
|
890
|
+
</div>
|
891
|
+
<div class="start-timer">
|
892
|
+
<a class="button create-timer" href="#" onclick="SNI.Recipe.KitchenView.createKVTimer()" rel="addtimer"><span>Start</span></a>
|
893
|
+
</div>
|
894
|
+
<script type="text/javascript">
|
895
|
+
SNI.Food.Omniture.ClickTrack(".start-timer", "FOOD : Add Timer");
|
896
|
+
</script>
|
897
|
+
<p>You can create up to five timers</p>
|
898
|
+
</div>
|
899
|
+
<div class="dd-ft"></div>
|
900
|
+
</dd>
|
901
|
+
</dl>
|
902
|
+
|
903
|
+
</div>
|
904
|
+
</div>
|
905
|
+
<div class="timers-wrap">
|
906
|
+
<ul>
|
907
|
+
<li id="zTimer0">
|
908
|
+
<div class="timer-wrap">
|
909
|
+
<span class="tbutton" onclick="SNI.Recipe.KitchenView.pauseOrResume(0)"><span class="pause-button"></span></span>
|
910
|
+
<div class="controls">
|
911
|
+
<span class="timer-name"></span>
|
912
|
+
<span class="eraseTimer" onclick="SNI.Recipe.KitchenView.resetTimer(0)"></span>
|
913
|
+
<span class="timer-left"></span>
|
914
|
+
</div>
|
915
|
+
</div>
|
916
|
+
<div class="proof proof0"></div>
|
917
|
+
</li>
|
918
|
+
<li id="zTimer1">
|
919
|
+
<div class="timer-wrap">
|
920
|
+
<span class="tbutton" onclick="SNI.Recipe.KitchenView.pauseOrResume(1)"><span class="pause-button"></span></span>
|
921
|
+
<div class="controls">
|
922
|
+
<span class="timer-name"></span>
|
923
|
+
<span class="eraseTimer" onclick="SNI.Recipe.KitchenView.resetTimer(1)"></span>
|
924
|
+
<span class="timer-left"></span>
|
925
|
+
</div>
|
926
|
+
</div>
|
927
|
+
<div class="proof proof1"></div>
|
928
|
+
</li>
|
929
|
+
<li id="zTimer2">
|
930
|
+
<div class="timer-wrap">
|
931
|
+
<span class="tbutton" onclick="SNI.Recipe.KitchenView.pauseOrResume(2)"><span class="pause-button"></span></span>
|
932
|
+
<div class="controls">
|
933
|
+
<span class="timer-name"></span>
|
934
|
+
<span class="eraseTimer" onclick="SNI.Recipe.KitchenView.resetTimer(2)"></span>
|
935
|
+
<span class="timer-left"></span>
|
936
|
+
</div>
|
937
|
+
</div>
|
938
|
+
<div class="proof proof2"></div>
|
939
|
+
</li>
|
940
|
+
<li id="zTimer3">
|
941
|
+
<div class="timer-wrap">
|
942
|
+
<span class="tbutton" onclick="SNI.Recipe.KitchenView.pauseOrResume(3)"><span class="pause-button"></span></span>
|
943
|
+
<div class="controls">
|
944
|
+
<span class="timer-name"></span>
|
945
|
+
<span class="eraseTimer" onclick="SNI.Recipe.KitchenView.resetTimer(3)"></span>
|
946
|
+
<span class="timer-left"></span>
|
947
|
+
</div>
|
948
|
+
</div>
|
949
|
+
<div class="proof proof3"></div>
|
950
|
+
</li>
|
951
|
+
<li id="zTimer4">
|
952
|
+
<div class="timer-wrap">
|
953
|
+
<span class="tbutton" onclick="SNI.Recipe.KitchenView.pauseOrResume(4)"><span class="pause-button"></span></span>
|
954
|
+
<div class="controls">
|
955
|
+
<span class="timer-name"></span>
|
956
|
+
<span class="eraseTimer" onclick="SNI.Recipe.KitchenView.resetTimer(4)"></span>
|
957
|
+
<span class="timer-left"></span>
|
958
|
+
</div>
|
959
|
+
</div>
|
960
|
+
<div class="proof proof4"></div>
|
961
|
+
</li>
|
962
|
+
</ul>
|
963
|
+
</div>
|
964
|
+
</div>
|
965
|
+
<div class="kv-content">
|
966
|
+
<div class="ingred-wrap">
|
967
|
+
<div class="ingredients"></div>
|
968
|
+
</div>
|
969
|
+
<div class="directions">
|
970
|
+
<div class="directions-wrap"></div>
|
971
|
+
</div>
|
972
|
+
<div class="kv-footer">
|
973
|
+
<a class="kv-logo" href="/" title="Food Network"></a>
|
974
|
+
<p>©Television <a href="http://www.scrippsnetworks.com" rel="gf-parent-1">Food Network G.P.</a><br/>All Rights Reserved.</p>
|
975
|
+
</div>
|
976
|
+
</div>
|
977
|
+
</div>
|
978
|
+
</div>
|
979
|
+
<script type="text/javascript"> $(document).ready(function() { SNI.Recipe.KitchenView.init(); }); </script><div class="body-text"> <h2 class="kv-ingred">Ingredients</h2>
|
980
|
+
<!--concordance-begin-->
|
981
|
+
<ul class="kv-ingred-list1">
|
982
|
+
<li class="ingredient">2 bunches medium asparagus
|
983
|
+
<li class="ingredient">2 tablespoons <a href="http://www.foodterms.com/encyclopedia/olive-oil/index.html" class="crosslink" debug="46 67">extra-virgin olive oil</a>
|
984
|
+
<li class="ingredient">1/2 teaspoon kosher salt
|
985
|
+
<li class="ingredient">Freshly ground black pepper
|
986
|
+
<li class="ingredient">Grated or shaved <a href="http://www.foodterms.com/encyclopedia/parmesan/index.html" class="crosslink" debug="154 161">Parmesan</a>, optional</li>
|
987
|
+
</ul>
|
988
|
+
<!--concordance-end-->
|
989
|
+
<h2>Directions</h2>
|
990
|
+
<div class="instructions">
|
991
|
+
<p class="instruction"> Preheat the oven to 450 degrees F.
|
992
|
+
<p>
|
993
|
+
<p>Trim the woody ends from the asparagus, usually about 1 1/2 inches. Lightly <a href="http://www.foodterms.com/encyclopedia/peel/index.html" class="crosslink" debug="122 125">peel</a> the remaining stalks (not always necessary, but more of a personal preference). Spread the spears in a single layer on a baking sheet, <a href="http://www.foodterms.com/encyclopedia/drizzle/index.html" class="crosslink" debug="262 268">drizzle</a> with olive oil, sprinkle with the salt and pepper, and roll to coat thoroughly.
|
994
|
+
<p>
|
995
|
+
<p><a href="http://www.foodterms.com/encyclopedia/roast/index.html" class="crosslink" debug="361 365">Roast</a> the asparagus until lightly browned and tender, about 8 to 10 minutes, giving the pan a good shake about halfway through to turn the <a href="http://www.foodterms.com/encyclopedia/asparagus/index.html" class="crosslink" debug="500 508">asparagus</a>. Arrange the roasted asparagus on a serving platter and top with some Parmesan. Serve warm or at room temperature.
|
996
|
+
<p>
|
997
|
+
<p>Copyright (c) 2004 Television Food Network, G.P., All Rights Reserved. </p>
|
998
|
+
</div>
|
999
|
+
|
1000
|
+
|
1001
|
+
<!--concordance-begin-->
|
1002
|
+
<!--concordance-end-->
|
1003
|
+
</div> <!-- /body-text --><script type="text/javascript">SNI.Food.Omniture.CrossLinkTrack("#fn-w .body-text");</script><p class="print">
|
1004
|
+
<a href="/food/cda/recipe_print/0,1946,FOOD_9936_30733_RECIPE-PRINT-FULL-PAGE-FORMATTER,00.html" rel="prntrcp-ccw nofollow" target="_blank">Print Recipe</a>
|
1005
|
+
</p>
|
1006
|
+
<script type="text/javascript">
|
1007
|
+
SNI.Food.Omniture.ClickTrack(".print", "FOOD : Print This Recipe");
|
1008
|
+
</script>
|
1009
|
+
<div class="feature-block clrfix"><!-- Endeca request http://searchServices.scrippsnetworks.com/food/cxfservice/recipe/nextRecipe/30733?maxResults=5 -->
|
1010
|
+
<!-- Endeca request http://searchServices.scrippsnetworks.com/food/cxfservice/recipe/collection/recipeId/30733 -->
|
1011
|
+
<div class="four-feature plain clrfix">
|
1012
|
+
<h2>Browse Similar Recipes</h2>
|
1013
|
+
<ul class="browse-similar">
|
1014
|
+
<li><a rel="bmr-1" href="/recipes/emeril-lagasse/garlic-roasted-asparagus-recipe/index.html" title="Garlic-Roasted Asparagus"><img width="92" height="69" alt="Garlic-Roasted Asparagus" src="http://img.foodnetwork.com/FOOD/2009/04/14/EM1G78_25447_s4x3_sm.jpg"><p>Garlic-Roasted Asparagus</p></a><cite>By: <a href="/emeril-lagasse/index.html">Emeril Lagasse</a></cite></li>
|
1015
|
+
<li><a rel="bmr-2" href="/recipes/robin-miller/roasted-asparagus-bundles-recipe/index.html" title="Roasted Asparagus Bundles"><img width="92" height="69" alt="Roasted Asparagus Bundles" src="http://img.foodnetwork.com/FOOD/2007/04/30/MD_Asparagus_sm.jpg"><p>Roasted Asparagus Bundles</p></a><cite>By: <a href="/robin-miller/index.html">Robin Miller</a></cite></li>
|
1016
|
+
<li><a rel="bmr-3" href="/recipes/alton-brown/roasted-asparagus-recipe/index.html" title="Roasted Asparagus"><img width="92" height="69" alt="Roasted Asparagus" src="http://img.foodnetwork.com/FOOD/2011/08/04/EA1405_roasted-asparagus_s4x3_sm.jpg"><p>Roasted Asparagus</p></a><cite>By: <a href="/alton-brown/index.html">Alton Brown</a></cite></li>
|
1017
|
+
<li class="last"><a rel="bmr-4" href="/recipes/food-network-kitchens/roasted-asparagus-with-hollandaise-recipe/index.html" title="Roasted Asparagus with Hollandaise"><img width="92" height="69" alt="Roasted Asparagus with Hollandaise" src="http://img.foodnetwork.com/FOOD/2007/04/03/Easter_07_asparagus_sm.jpg"><p>Roasted Asparagus with Hollandaise</p></a><cite>By: <a href="/food-network-kitchens/index.html">Food Network Kitchens</a></cite></li>
|
1018
|
+
</ul>
|
1019
|
+
<div class="three-col-list">
|
1020
|
+
<p><a rel="rc-0" href="/recipe-collections/side-dish/index.html">View All 38 Side Dish Collections</a></p>
|
1021
|
+
<h2>Side Dish Recipe Collections</h2>
|
1022
|
+
<ul class="list">
|
1023
|
+
<li><a rel="rc-1" href="/recipe-collections/bread/index.html">Bread Recipes</a><cite>(713)</cite></li>
|
1024
|
+
<li><a rel="rc-2" href="/recipe-collections/tomato-side-dish/index.html">Tomato Side Dish Recipes</a><cite>(1033)</cite></li>
|
1025
|
+
</ul><ul class="list">
|
1026
|
+
<li><a rel="rc-3" href="/recipe-collections/stuffing/index.html">Stuffing Recipes</a><cite>(556)</cite></li>
|
1027
|
+
<li><a rel="rc-4" href="/recipe-collections/squash-casserole/index.html">Squash Casserole Recipes</a><cite>(12)</cite></li>
|
1028
|
+
</ul><ul class="list">
|
1029
|
+
<li><a rel="rc-5" href="/recipe-collections/spinach-casserole/index.html">Spinach Casserole Recipes</a><cite>(12)</cite></li>
|
1030
|
+
<li><a rel="rc-6" href="/recipe-collections/spanish-rice/index.html">Spanish Rice Recipes</a><cite>(14)</cite></li>
|
1031
|
+
</ul>
|
1032
|
+
</div>
|
1033
|
+
</div>
|
1034
|
+
<script type="text/javascript">SNI.Food.Omniture.ClickTrack(".browse-similar", "FOOD : Browse More Recipes");</script>
|
1035
|
+
<script type="text/javascript">SNI.Food.Omniture.ClickTrack(".three-col-list", "FOOD : Recipe Collections");</script></div>
|
1036
|
+
|
1037
|
+
|
1038
|
+
|
1039
|
+
|
1040
|
+
|
1041
|
+
|
1042
|
+
|
1043
|
+
|
1044
|
+
|
1045
|
+
|
1046
|
+
|
1047
|
+
|
1048
|
+
|
1049
|
+
|
1050
|
+
|
1051
|
+
<script language="javascript">
|
1052
|
+
if( typeof(SNI)=='undefined' ){
|
1053
|
+
SNI = {};
|
1054
|
+
}
|
1055
|
+
if( typeof(SNI.Community)=='undefined' ){
|
1056
|
+
SNI.Community = {};
|
1057
|
+
}
|
1058
|
+
if( typeof(SNI.Community.Toolbox)=='undefined' ){
|
1059
|
+
SNI.Community.Toolbox = {};
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
if( typeof(SNI.Community.Widgets) == 'undefined' )
|
1063
|
+
{
|
1064
|
+
SNI.Community.Widgets = {};
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
</script>
|
1068
|
+
<script language="javascript" src="http://my.foodnetwork.com/skins/js/cp_commenting.js"></script>
|
1069
|
+
|
1070
|
+
|
1071
|
+
<script language="javascript" src="http://my.foodnetwork.com/skins/js/externalwidget.js"></script>
|
1072
|
+
<script language="javascript" src="http://my.foodnetwork.com/skins/js/widget.js"></script>
|
1073
|
+
<script language="javascript" src="http://my.foodnetwork.com/skins/js/widgethelper.js"></script>
|
1074
|
+
|
1075
|
+
<script language="javascript">includeCss("http://my.foodnetwork.com/skins/css/widgets/foodnetwork-style.css");</script>
|
1076
|
+
|
1077
|
+
|
1078
|
+
<script language="javascript">
|
1079
|
+
if(!SNI.Community.Toolbox.cWidgetNameUsedInApp)
|
1080
|
+
SNI.Community.Toolbox.cWidgetNameUsedInApp = "Food Network";
|
1081
|
+
SNI.Community.Toolbox.ur = true;
|
1082
|
+
SNI.Community.Toolbox.rootUrl = 'http://my.foodnetwork.com';
|
1083
|
+
SNI.Community.Toolbox.cSiteId = '1';
|
1084
|
+
SNI.Community.Toolbox.cAdminRootUrl = 'http://pickleadmin.scrippsnetworks.com';
|
1085
|
+
SNI.Community.Toolbox.cPublicRootUrl = 'http://my.foodnetwork.com';
|
1086
|
+
SNI.Community.Toolbox.csoFarVoteval = '0';
|
1087
|
+
SNI.Community.Toolbox.cObjectType = '93219';
|
1088
|
+
SNI.Community.Toolbox.cAssetId = '30733';
|
1089
|
+
SNI.Community.Toolbox.cAssetUrl = 'http://www.foodnetwork.com/recipes/tyler-florence/roasted-asparagus-recipe/index.html';
|
1090
|
+
SNI.Community.Toolbox.cAssetTitle = 'Roasted Asparagus';
|
1091
|
+
SNI.Community.Toolbox.cCollId = '19438196';
|
1092
|
+
SNI.Community.Toolbox.cSelectedId = '19438196';
|
1093
|
+
SNI.Community.Toolbox.cWidInsId = '1291660';
|
1094
|
+
SNI.Community.Toolbox.cGlobalUserId = '0';
|
1095
|
+
SNI.Community.Toolbox.cGlobalUserDisplayName = '';
|
1096
|
+
SNI.Community.Toolbox.cGlobalUserEmail = '';
|
1097
|
+
SNI.Community.Toolbox.cClientUrl = '/recipes/tyler-florence/roasted-asparagus-recipe/index.html';
|
1098
|
+
SNI.Community.Toolbox.cGlobalCounterText = '';
|
1099
|
+
SNI.Community.Toolbox.cGlobalOrigWidgetProjectId = '1044056';
|
1100
|
+
SNI.Community.Toolbox.cWidgetProjectName = 'Food Network Community Toolbox';
|
1101
|
+
SNI.Community.Toolbox.cIsCommentEnabled = true;
|
1102
|
+
|
1103
|
+
var t_temp = document.location+"";
|
1104
|
+
if(t_temp.indexOf(":80")==-1 && SNI.Community.Toolbox.rootUrl.indexOf(":80")!=-1 && SNI.Community.Toolbox.rootUrl.indexOf("8005")==-1)
|
1105
|
+
SNI.Community.Toolbox.rootUrl = SNI.Community.Toolbox.rootUrl.substring(0,SNI.Community.Toolbox.rootUrl.indexOf(":80"));
|
1106
|
+
|
1107
|
+
</script>
|
1108
|
+
|
1109
|
+
<input type="hidden" id="objectRating" value="0">
|
1110
|
+
<input type="hidden" id="currentPage" value="1">
|
1111
|
+
|
1112
|
+
|
1113
|
+
|
1114
|
+
|
1115
|
+
|
1116
|
+
|
1117
|
+
|
1118
|
+
|
1119
|
+
|
1120
|
+
|
1121
|
+
|
1122
|
+
<script type="text/javascript">
|
1123
|
+
SNI.Community.UR.baseOfLoginProject= 'http://my.foodnetwork.com';
|
1124
|
+
SNI.Community.UR.secureDomainFromLoginProject= 'https://mysecure.foodnetwork.com';
|
1125
|
+
SNI.Community.UR.currentBaseUrl= 'http://my.foodnetwork.com';
|
1126
|
+
SNI.Community.UR.loginProjectUrl= 'http://my.foodnetwork.com/registration/login.esi';
|
1127
|
+
SNI.Community.UR.baseUrlForAUrl= 'http://my.foodnetwork.com';
|
1128
|
+
SNI.Community.UR.FBAPIKeyForUrl= '137124506321777';
|
1129
|
+
</script>
|
1130
|
+
|
1131
|
+
|
1132
|
+
|
1133
|
+
|
1134
|
+
|
1135
|
+
|
1136
|
+
|
1137
|
+
<script language="javascript">
|
1138
|
+
|
1139
|
+
|
1140
|
+
|
1141
|
+
|
1142
|
+
SNI.Community.Toolbox.subPath = "";
|
1143
|
+
SNI.Community.Toolbox.isCommunityToolboxWidget = 'true';
|
1144
|
+
|
1145
|
+
if(SNI.Community.Toolbox.isCommunityToolboxWidget=='true')
|
1146
|
+
{
|
1147
|
+
SNI.Community.Toolbox.subPath = "/communitytools";
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
|
1151
|
+
|
1152
|
+
|
1153
|
+
SNI.Community.Toolbox.domainName = window.location.href.substring(window.location.href.indexOf("."), window.location.href.indexOf("/",window.location.href.indexOf(".")) );
|
1154
|
+
|
1155
|
+
//SNI.Community.Toolbox.domainName = ".foodnetwork.com";
|
1156
|
+
SNI.Community.Toolbox.notLocal = true;
|
1157
|
+
SNI.Community.Toolbox.registUrl = "http://my.foodnetwork.com/registration/";
|
1158
|
+
SNI.Community.Toolbox.baseDomainOfLoginProject = "http://my.foodnetwork.com";
|
1159
|
+
SNI.Community.Toolbox.absoluteURLPathForTargetString = "http://my.foodnetwork.com";
|
1160
|
+
SNI.Community.Toolbox.baseHostPlusDomain = "my.foodnetwork.com";
|
1161
|
+
SNI.Community.Toolbox.returl = "http://my.foodnetwork.com/registration";
|
1162
|
+
SNI.Community.Toolbox.homeProjectUrl = "http://www.foodnetwork.com";
|
1163
|
+
SNI.Community.Toolbox.siteId = "1";
|
1164
|
+
|
1165
|
+
var base_Url = "http://my.foodnetwork.com";
|
1166
|
+
|
1167
|
+
</script>
|
1168
|
+
|
1169
|
+
<script language="javascript" src="http://my.foodnetwork.com/skins/js/login.js"></script>
|
1170
|
+
<div id="com-signin" style="position:absolute;top:0px;left:0px;">
|
1171
|
+
<input type="hidden" name="com-signin-lip" id="com-signin-lip">
|
1172
|
+
|
1173
|
+
|
1174
|
+
<div id="com-signin-top"></div>
|
1175
|
+
<div id="ieDiv"></div>
|
1176
|
+
<div id="com-signin-middle">
|
1177
|
+
<div id="com-signin-middle-container">
|
1178
|
+
<div id="com-signin-middle-title">
|
1179
|
+
<div id="com-signin-title-text"><h2 id="header_text">COMMENT ON THIS PROJECT</h2></div>
|
1180
|
+
<div id="com-signin-close"><a href="javascript:displayOff('up-ur-signup-error');displayOff('com-signin');displayOn('com-signin-content');displayOff('com-signin-content02');displayOff('com-signin-content03');displayOff('com-signin-content04');"><img src="http://my.foodnetwork.com/skins/main/images/account/dot.gif" border="0"></a> </div>
|
1181
|
+
<div id="up-clear"></div>
|
1182
|
+
</div>
|
1183
|
+
<div id="com-signin-left">
|
1184
|
+
<!--TYPE 01//-->
|
1185
|
+
<div id="com-signin-title-text">
|
1186
|
+
<h2>Sign in</h2>
|
1187
|
+
<p>All fields are required.</p>
|
1188
|
+
</div>
|
1189
|
+
<div id="up-clear"></div>
|
1190
|
+
<div id="up-ur-signup-error" style="display: none;"></div>
|
1191
|
+
<div id="com-signin-content">
|
1192
|
+
<div id="com-signin-email">
|
1193
|
+
<p id="e-m">E-mail Address:</p>
|
1194
|
+
<div id="cgp-text-field"><div id="cgp-inner-text-field"><input type="text" name="com_signin_email" id="com-signin-email" tabindex="1"></div></div>
|
1195
|
+
<div id="up-clear"></div>
|
1196
|
+
</div>
|
1197
|
+
<div id="com-signin-password">
|
1198
|
+
<div id="com-signin-password-titles">
|
1199
|
+
<div id="com-signin-password-left"><p id="p-w">Password:</p></div>
|
1200
|
+
<div id="com-signin-password-right"><p><a href="javascript:displayOff('up-ur-signup-error');displayOff('com-signin-content'); displayOff('up-ur-signup-error'); displayOn('com-signin-content03');displayOff('com-signin-content05');">Forgot Password?</a></p></div>
|
1201
|
+
<div id="up-clear"></div>
|
1202
|
+
</div>
|
1203
|
+
<div id="cgp-text-field"><div id="cgp-inner-text-field"><input type="password" name="com_signin_password" id="com-signin-email" tabindex="2"></div></div>
|
1204
|
+
<div id="up-clear"></div>
|
1205
|
+
</div>
|
1206
|
+
|
1207
|
+
|
1208
|
+
<div id="com-signin-remember" >
|
1209
|
+
<p><input type="checkbox" id="SMSAVECREDS" name="SMSAVECREDS" value="YES"> Remember me on this computer</p>
|
1210
|
+
</div>
|
1211
|
+
|
1212
|
+
|
1213
|
+
<div id="com-signin-button-container">
|
1214
|
+
<div id="com-signin-button">
|
1215
|
+
|
1216
|
+
<ul id="widget-nav"><li id="widget-nav-item-off" /><a href="javascript:SNI.Community.UR.d2cLogin()"><em>Sign In</em></a></ul>
|
1217
|
+
<div id="up-clear"></div>
|
1218
|
+
</div>
|
1219
|
+
<div id="up-clear"></div>
|
1220
|
+
</div>
|
1221
|
+
</div>
|
1222
|
+
<!--TYPE 02//-->
|
1223
|
+
<div id="com-signin-content02">
|
1224
|
+
<div id="com-signin-signing">
|
1225
|
+
<p>Signing in</p>
|
1226
|
+
<p><img src="http://my.foodnetwork.com/skins/main/images/account/dot.gif" border="0"></p>
|
1227
|
+
</div>
|
1228
|
+
</div>
|
1229
|
+
<div id="com-signin-content05" style="display:none">
|
1230
|
+
<div id="com-signin-signing">
|
1231
|
+
<p>Sending Password</p>
|
1232
|
+
<p><img src="http://my.foodnetwork.com/skins/main/images/account/dot.gif" border="0"></p>
|
1233
|
+
</div>
|
1234
|
+
|
1235
|
+
</div>
|
1236
|
+
<!--TYPE 03//-->
|
1237
|
+
<div id="com-signin-content03">
|
1238
|
+
<div id="com-signin-message">
|
1239
|
+
<p>Please enter your email address and we will send your password</p>
|
1240
|
+
</div>
|
1241
|
+
<div id="com-signin-email">
|
1242
|
+
<p id="Fe-m">E-mail Address</p>
|
1243
|
+
<div id="cgp-text-field"><div id="cgp-inner-text-field"><input type="text" name="com_forgot_email" id="com-signin-email"></div></div>
|
1244
|
+
<div id="up-clear"></div>
|
1245
|
+
</div>
|
1246
|
+
<div id="com-signin-button-container02">
|
1247
|
+
<div id="com-signin-request">
|
1248
|
+
<ul id="widget-nav"><li id="widget-nav-item-off" /><a href="javascript: sendpassword();"><em>Request Password</em></a></ul>
|
1249
|
+
<div id="com-signin-orcancel"><p>or <a href="javascript:displayOff('com-signin');displayOn('com-signin-content');displayOff('com-signin-content02');displayOff('com-signin-content03');displayOff('com-signin-content04');">Cancel</a></p></div>
|
1250
|
+
<div id="up-clear"></div>
|
1251
|
+
</div>
|
1252
|
+
<div id="up-clear"></div>
|
1253
|
+
</div>
|
1254
|
+
</div>
|
1255
|
+
<!--TYPE 04//-->
|
1256
|
+
<div id="com-signin-content04">
|
1257
|
+
<div id="com-signin-message">
|
1258
|
+
<p>Your password has been sent and should arrive in your mailbox very soon.</p>
|
1259
|
+
</div>
|
1260
|
+
<div id="com-signin-button-container">
|
1261
|
+
<div id="com-signin-button">
|
1262
|
+
<ul id="widget-nav"><li id="widget-nav-item-inactive" /><a id="fogot_button"><em>Sign In</em></a></ul>
|
1263
|
+
<div id="up-clear"></div>
|
1264
|
+
</div>
|
1265
|
+
<div id="up-clear"></div>
|
1266
|
+
</div>
|
1267
|
+
</div>
|
1268
|
+
</div>
|
1269
|
+
<div id="com-signin-right">
|
1270
|
+
<div id="com-signin-notmember" style="position: relative;">
|
1271
|
+
<h2 style="position: relative;">Not a member?</h2>
|
1272
|
+
|
1273
|
+
<p style="position: relative;">Sign up for My Food Network to share photos, show off your style, and connect to an enthusiastic and helpful community.</p>
|
1274
|
+
|
1275
|
+
<p>It's free and easy.</p>
|
1276
|
+
<div id="com-joinin-button-container">
|
1277
|
+
<div id="com-signin-button">
|
1278
|
+
<ul id="widget-nav"><li id="widget-nav-item-off" /><a href="javascript:registration();"><em>Register Now</em></a></li></ul>
|
1279
|
+
<div id="up-clear"></div>
|
1280
|
+
</div>
|
1281
|
+
<div id="up-clear"></div>
|
1282
|
+
</div>
|
1283
|
+
</div>
|
1284
|
+
</div>
|
1285
|
+
<div id="up-clear"></div>
|
1286
|
+
</div>
|
1287
|
+
|
1288
|
+
|
1289
|
+
|
1290
|
+
|
1291
|
+
|
1292
|
+
|
1293
|
+
|
1294
|
+
|
1295
|
+
|
1296
|
+
|
1297
|
+
|
1298
|
+
</div>
|
1299
|
+
<div id="com-signin-bottom"></div>
|
1300
|
+
</div>
|
1301
|
+
|
1302
|
+
|
1303
|
+
|
1304
|
+
|
1305
|
+
|
1306
|
+
|
1307
|
+
|
1308
|
+
|
1309
|
+
|
1310
|
+
<script language="javascript">
|
1311
|
+
document.getElementById("com-signin").style.display="none";
|
1312
|
+
</script>
|
1313
|
+
|
1314
|
+
<div id="commentsshell">
|
1315
|
+
<div id="rz-w">
|
1316
|
+
|
1317
|
+
|
1318
|
+
|
1319
|
+
|
1320
|
+
|
1321
|
+
|
1322
|
+
|
1323
|
+
|
1324
|
+
|
1325
|
+
|
1326
|
+
|
1327
|
+
|
1328
|
+
|
1329
|
+
<script language="javascript">
|
1330
|
+
if( typeof(SNI)=='undefined' ){
|
1331
|
+
SNI = {};
|
1332
|
+
}
|
1333
|
+
if( typeof(SNI.Community)=='undefined' ){
|
1334
|
+
SNI.Community = {};
|
1335
|
+
}
|
1336
|
+
if( typeof(SNI.Community.Toolbox)=='undefined' ){
|
1337
|
+
SNI.Community.Toolbox = {};
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
if( typeof(SNI.Community.Widgets) == 'undefined' ){
|
1341
|
+
SNI.Community.Widgets = {};
|
1342
|
+
}
|
1343
|
+
|
1344
|
+
</script>
|
1345
|
+
|
1346
|
+
|
1347
|
+
<input type="hidden" id="sendalertemailValue" name="sendalertemailValue" value="1">
|
1348
|
+
<input type="hidden" id="deactivateItemValue" name="deactivateItemValue" value="1">
|
1349
|
+
<input type="hidden" id="sendalertemailthreshold" name="sendalertemailthreshold" value="1">
|
1350
|
+
<input type="hidden" id="deactivateItemthreshold" name="deactivateItemthreshold" value="2">
|
1351
|
+
<input type="hidden" id="moderationFlag" name="moderationFlag" value="1">
|
1352
|
+
<input type="hidden" id="cachekey" value="19438196.-1.ReviewsVO">
|
1353
|
+
<input type="hidden" id="loginproURL" value="http://my.foodnetwork.com/registration/login.esi">
|
1354
|
+
<input type="hidden" id="wp_obj_type" value = "93219" />
|
1355
|
+
<input type="hidden" id="wp_pro_name" value = "Food Network Community Toolbox" />
|
1356
|
+
<input type="hidden" id="wpid_hid" value = "682049" />
|
1357
|
+
|
1358
|
+
|
1359
|
+
|
1360
|
+
|
1361
|
+
<!-- BEGIN COPYING IN RZ REVIEWS CONTENT -->
|
1362
|
+
|
1363
|
+
|
1364
|
+
<div class="rz-ratings-reviews">
|
1365
|
+
|
1366
|
+
|
1367
|
+
|
1368
|
+
<div class="pod post-review">
|
1369
|
+
<div class="rz-hd"></div>
|
1370
|
+
<div class="rz-bd enter-rating" style="display: block;" id="write_cmt">
|
1371
|
+
<h2 class="title">Review This Recipe</h2>
|
1372
|
+
<p>You must be signed in to review this recipe.</p>
|
1373
|
+
<div class="clrfix">
|
1374
|
+
<ul id="widget-nav"><li id="widget-nav-item-off"><a href="javascript:void(0)" id="post" onclick="SNI.Community.Toolbox.populateLoginLink();"><em>Sign in</em></a></li></ul>
|
1375
|
+
<p>or <a href="javascript:void(0)" id="register" onclick="SNI.Community.Toolbox.populateRegLink();">Register to Review</a></p>
|
1376
|
+
</div>
|
1377
|
+
</div>
|
1378
|
+
<div class="rz-ft"></div>
|
1379
|
+
</div>
|
1380
|
+
|
1381
|
+
<div class="rz-bd review-sent" id="post_message" style = "display:none">
|
1382
|
+
<h2>Review This Recipe</h2>
|
1383
|
+
<p>Your review has been submitted for approval and will appear shortly. Thanks!</p>
|
1384
|
+
</div>
|
1385
|
+
<div id="rz-lst">
|
1386
|
+
<div class="rz-ft"></div>
|
1387
|
+
|
1388
|
+
|
1389
|
+
<div class="reviewlisttitle clrfix">
|
1390
|
+
<h2>Newest Ratings and Reviews</h2>
|
1391
|
+
<p><a href="/recipes/tyler-florence/roasted-asparagus-recipe/reviews/index.html">Read all 60 reviews</a></p>
|
1392
|
+
</div>
|
1393
|
+
<div class="pod ratings-reviews-list" id="ratings-reviews-list">
|
1394
|
+
<div id="ratings-reviews-list-inner">
|
1395
|
+
<!-- JEE REMOVING LINE ITEM CONTENT FROM HERE -->
|
1396
|
+
|
1397
|
+
|
1398
|
+
|
1399
|
+
|
1400
|
+
|
1401
|
+
|
1402
|
+
|
1403
|
+
|
1404
|
+
<ul id="rating_review_list_ul">
|
1405
|
+
|
1406
|
+
<!-- BEGIN INDIVIDUAL COMMENT -->
|
1407
|
+
<li class="clrfix rating_review">
|
1408
|
+
<div class="rz-w">
|
1409
|
+
|
1410
|
+
|
1411
|
+
|
1412
|
+
|
1413
|
+
<a href="http://my.foodnetwork.com/community/quickandeasy123/style.esi?userid=42510905" ><img height="48" width="48" alt="" src="http://my.foodnetwork.com/skins/main/images/profilephotolookup/23_square.gif"></a>
|
1414
|
+
|
1415
|
+
|
1416
|
+
<div class="about-recipe-info">
|
1417
|
+
<div class="user-info clrfix">
|
1418
|
+
|
1419
|
+
<p>By <a href="http://my.foodnetwork.com/community/quickandeasy123/style.esi?userid=42510905" >quickandeasy123</a></p>
|
1420
|
+
|
1421
|
+
|
1422
|
+
<div id="cl-l-address" ><p></p></div>
|
1423
|
+
|
1424
|
+
</div>
|
1425
|
+
|
1426
|
+
<p>on June 28, 2011</p>
|
1427
|
+
|
1428
|
+
</div>
|
1429
|
+
</div>
|
1430
|
+
|
1431
|
+
|
1432
|
+
<!-- note...something about this class="rz-e" causes this div not to appear sometimes in IE7 -->
|
1433
|
+
<div class="rz-e" >
|
1434
|
+
<div class="rz-hd"></div>
|
1435
|
+
<div class="rz-bd">
|
1436
|
+
<div class="arrow"></div>
|
1437
|
+
|
1438
|
+
<div class="upper-quote clrfix">
|
1439
|
+
|
1440
|
+
<div class="upper-quote-hd"></div>
|
1441
|
+
<div class="upper-quote-bd clrfix reviewminilist">
|
1442
|
+
<p class="comment-rating"><span class="rating-sm-5"></span> </p>
|
1443
|
+
|
1444
|
+
|
1445
|
+
<p id="objCommentFlag0" class="flag"><a id="commens_link_22837450" href="javascript:void(0);" onclick="SNI.Community.Toolbox.doCommentsFlag('22837450',this);">Flag</a></p>
|
1446
|
+
|
1447
|
+
|
1448
|
+
|
1449
|
+
<div id="cgp-flyout-01-container" style="z-index: 15000;">
|
1450
|
+
<div id="cgp-flyout-a" style="z-index: 15001;">
|
1451
|
+
<div id="cgp-flyout-22837450" style="display: none;">
|
1452
|
+
<div id="cgp-d2c-flyout-top"></div>
|
1453
|
+
<div id="ieDiv3-d2c"></div>
|
1454
|
+
<div id="cgp-d2c-flyout-middle">
|
1455
|
+
<div id="cgp-flyout-content">
|
1456
|
+
<div id="cgp-flyout-t">
|
1457
|
+
|
1458
|
+
<div id="cgp-flyout-title"><h3>Flag This Review?</h3></div>
|
1459
|
+
<div id="cgp-flyout-close" onclick="SNI.Community.Widgets.displayOff('cgp-flyout-22837450');" ><a href="javascript:SNI.Community.Widgets.displayOff('cgp-flyout-22837450');"><img src="http://my.foodnetwork.com/skins/main/images/account/dot.gif" border="0"></a></div>
|
1460
|
+
<div id="up-clear"></div>
|
1461
|
+
</div>
|
1462
|
+
<div id="errorTextAltered_22837450" style="display: none;">You must provide a reason for flagging this review.</div>
|
1463
|
+
<div id="cgp-flyout-list">
|
1464
|
+
<!-- <p>Are you sure you want to flag this comment?</p> -->
|
1465
|
+
<p>Please provide the reason why you think this review is <b>inappropriate</b>.</p>
|
1466
|
+
<p id="comment_flag_reason_error_22837450" class="flp" style="display:none;"></p>
|
1467
|
+
<div id="emf-textarea-field" style="width: 210px;">
|
1468
|
+
<div id="emf-inner-textarea-field" style="width: 210px;">
|
1469
|
+
<textarea id="comment_flag_reason_22837450" style="width: 200px;"></textarea>
|
1470
|
+
|
1471
|
+
</div>
|
1472
|
+
<div id="up-clear"></div>
|
1473
|
+
</div>
|
1474
|
+
<div id="up-clear"></div>
|
1475
|
+
|
1476
|
+
</div>
|
1477
|
+
<div id="cgp-flyout-02-button">
|
1478
|
+
|
1479
|
+
<div id="cgp-nav" style="float: left;"><ul id="widget-nav"><li id="widget-nav-item"><a href="javascript:void(0);" onclick="SNI.Community.Widgets.flagAsInappropriate('22837450','reviews','commens_link_22837450','comments_text22837450','42510905');"><em>Flag This Review?</em></a></li></ul></div><div id="cgp-flyout-01-button02"><p>or <a href="javascript:SNI.Community.Widgets.displayOff('cgp-flyout-22837450');">Cancel</a></p></div>
|
1480
|
+
<div style="clear: both;"></div>
|
1481
|
+
</div>
|
1482
|
+
</div>
|
1483
|
+
</div>
|
1484
|
+
<div id="cgp-d2c-flyout-bottom"></div>
|
1485
|
+
</div>
|
1486
|
+
</div>
|
1487
|
+
</div>
|
1488
|
+
</div>
|
1489
|
+
<div class="upper-quote-ft"></div>
|
1490
|
+
|
1491
|
+
</div>
|
1492
|
+
<p id="comments_text22837450" class="quote">The aspargus was salty and tender. It was a grate complement to the talipa.</p>
|
1493
|
+
|
1494
|
+
<div class="end-quote"></div>
|
1495
|
+
|
1496
|
+
<div class="feeback-wrapper clrfix">
|
1497
|
+
|
1498
|
+
<small class="number-helpful"><label id="vote_use_22837450">0</label> people found this review Helpful.</small>
|
1499
|
+
|
1500
|
+
|
1501
|
+
<div id="comment_22837450">
|
1502
|
+
<small class="helpful-vote" id="was_this_928418">Was this review helpful to you?
|
1503
|
+
<a href="javascript:void(0);" id="yes_22837450" onclick="javascript:SNI.Community.Toolbox.secureReview('add','22837450','-1','19438196');"><strong>Yes</strong></a> |
|
1504
|
+
<a href="javascript:void(0);" id="no_22837450" onclick="javascript:SNI.Community.Toolbox.secureReview('remove','22837450','-1','19438196');"><strong>No</strong></a></small>
|
1505
|
+
</div>
|
1506
|
+
<script type="text/javascript">
|
1507
|
+
if(SNI.Community.Widgets.isAlreadyReviewed("Yes",'-1','22837450') || SNI.Community.Widgets.isAlreadyReviewed("No",'-1','22837450')){
|
1508
|
+
if((document.getElementById("comment_"+22837450) != null))
|
1509
|
+
document.getElementById("comment_"+22837450).style.display = "none";
|
1510
|
+
}
|
1511
|
+
</script>
|
1512
|
+
|
1513
|
+
</div>
|
1514
|
+
|
1515
|
+
|
1516
|
+
|
1517
|
+
|
1518
|
+
</div>
|
1519
|
+
<div class="rz-ft"></div>
|
1520
|
+
</div>
|
1521
|
+
|
1522
|
+
|
1523
|
+
|
1524
|
+
|
1525
|
+
</li>
|
1526
|
+
|
1527
|
+
<!-- END INDIVIDUAL COMMENT -->
|
1528
|
+
|
1529
|
+
<!-- BEGIN INDIVIDUAL COMMENT -->
|
1530
|
+
<li class="clrfix rating_review">
|
1531
|
+
<div class="rz-w">
|
1532
|
+
|
1533
|
+
|
1534
|
+
|
1535
|
+
|
1536
|
+
<a href="http://my.foodnetwork.com/community/riley14_11745075/style.esi?userid=11745075" ><img height="48" width="48" alt="" src="http://my.foodnetwork.com/skins/main/images/profilephotolookup/42_square.gif"></a>
|
1537
|
+
|
1538
|
+
|
1539
|
+
<div class="about-recipe-info">
|
1540
|
+
<div class="user-info clrfix">
|
1541
|
+
|
1542
|
+
<p>By <a href="http://my.foodnetwork.com/community/riley14_11745075/style.esi?userid=11745075" >riley14_11745075</a></p>
|
1543
|
+
|
1544
|
+
|
1545
|
+
<div id="cl-l-address" ><p>High Springs, FL</p></div>
|
1546
|
+
|
1547
|
+
</div>
|
1548
|
+
|
1549
|
+
<p>on April 24, 2011</p>
|
1550
|
+
|
1551
|
+
</div>
|
1552
|
+
</div>
|
1553
|
+
|
1554
|
+
|
1555
|
+
<!-- note...something about this class="rz-e" causes this div not to appear sometimes in IE7 -->
|
1556
|
+
<div class="rz-e" >
|
1557
|
+
<div class="rz-hd"></div>
|
1558
|
+
<div class="rz-bd">
|
1559
|
+
<div class="arrow"></div>
|
1560
|
+
|
1561
|
+
<div class="upper-quote clrfix">
|
1562
|
+
|
1563
|
+
<div class="upper-quote-hd"></div>
|
1564
|
+
<div class="upper-quote-bd clrfix reviewminilist">
|
1565
|
+
<p class="comment-rating"><span class="rating-sm-5"></span> </p>
|
1566
|
+
|
1567
|
+
|
1568
|
+
<p id="objCommentFlag1" class="flag"><a id="commens_link_22723104" href="javascript:void(0);" onclick="SNI.Community.Toolbox.doCommentsFlag('22723104',this);">Flag</a></p>
|
1569
|
+
|
1570
|
+
|
1571
|
+
|
1572
|
+
<div id="cgp-flyout-01-container" style="z-index: 15000;">
|
1573
|
+
<div id="cgp-flyout-a" style="z-index: 15001;">
|
1574
|
+
<div id="cgp-flyout-22723104" style="display: none;">
|
1575
|
+
<div id="cgp-d2c-flyout-top"></div>
|
1576
|
+
<div id="ieDiv3-d2c"></div>
|
1577
|
+
<div id="cgp-d2c-flyout-middle">
|
1578
|
+
<div id="cgp-flyout-content">
|
1579
|
+
<div id="cgp-flyout-t">
|
1580
|
+
|
1581
|
+
<div id="cgp-flyout-title"><h3>Flag This Review?</h3></div>
|
1582
|
+
<div id="cgp-flyout-close" onclick="SNI.Community.Widgets.displayOff('cgp-flyout-22723104');" ><a href="javascript:SNI.Community.Widgets.displayOff('cgp-flyout-22723104');"><img src="http://my.foodnetwork.com/skins/main/images/account/dot.gif" border="0"></a></div>
|
1583
|
+
<div id="up-clear"></div>
|
1584
|
+
</div>
|
1585
|
+
<div id="errorTextAltered_22723104" style="display: none;">You must provide a reason for flagging this review.</div>
|
1586
|
+
<div id="cgp-flyout-list">
|
1587
|
+
<!-- <p>Are you sure you want to flag this comment?</p> -->
|
1588
|
+
<p>Please provide the reason why you think this review is <b>inappropriate</b>.</p>
|
1589
|
+
<p id="comment_flag_reason_error_22723104" class="flp" style="display:none;"></p>
|
1590
|
+
<div id="emf-textarea-field" style="width: 210px;">
|
1591
|
+
<div id="emf-inner-textarea-field" style="width: 210px;">
|
1592
|
+
<textarea id="comment_flag_reason_22723104" style="width: 200px;"></textarea>
|
1593
|
+
|
1594
|
+
</div>
|
1595
|
+
<div id="up-clear"></div>
|
1596
|
+
</div>
|
1597
|
+
<div id="up-clear"></div>
|
1598
|
+
|
1599
|
+
</div>
|
1600
|
+
<div id="cgp-flyout-02-button">
|
1601
|
+
|
1602
|
+
<div id="cgp-nav" style="float: left;"><ul id="widget-nav"><li id="widget-nav-item"><a href="javascript:void(0);" onclick="SNI.Community.Widgets.flagAsInappropriate('22723104','reviews','commens_link_22723104','comments_text22723104','11745075');"><em>Flag This Review?</em></a></li></ul></div><div id="cgp-flyout-01-button02"><p>or <a href="javascript:SNI.Community.Widgets.displayOff('cgp-flyout-22723104');">Cancel</a></p></div>
|
1603
|
+
<div style="clear: both;"></div>
|
1604
|
+
</div>
|
1605
|
+
</div>
|
1606
|
+
</div>
|
1607
|
+
<div id="cgp-d2c-flyout-bottom"></div>
|
1608
|
+
</div>
|
1609
|
+
</div>
|
1610
|
+
</div>
|
1611
|
+
</div>
|
1612
|
+
<div class="upper-quote-ft"></div>
|
1613
|
+
|
1614
|
+
</div>
|
1615
|
+
<p id="comments_text22723104" class="quote">So easy - amazing tast and texture!</p>
|
1616
|
+
|
1617
|
+
<div class="end-quote"></div>
|
1618
|
+
|
1619
|
+
<div class="feeback-wrapper clrfix">
|
1620
|
+
|
1621
|
+
<small class="number-helpful"><label id="vote_use_22723104">0</label> people found this review Helpful.</small>
|
1622
|
+
|
1623
|
+
|
1624
|
+
<div id="comment_22723104">
|
1625
|
+
<small class="helpful-vote" id="was_this_928418">Was this review helpful to you?
|
1626
|
+
<a href="javascript:void(0);" id="yes_22723104" onclick="javascript:SNI.Community.Toolbox.secureReview('add','22723104','-1','19438196');"><strong>Yes</strong></a> |
|
1627
|
+
<a href="javascript:void(0);" id="no_22723104" onclick="javascript:SNI.Community.Toolbox.secureReview('remove','22723104','-1','19438196');"><strong>No</strong></a></small>
|
1628
|
+
</div>
|
1629
|
+
<script type="text/javascript">
|
1630
|
+
if(SNI.Community.Widgets.isAlreadyReviewed("Yes",'-1','22723104') || SNI.Community.Widgets.isAlreadyReviewed("No",'-1','22723104')){
|
1631
|
+
if((document.getElementById("comment_"+22723104) != null))
|
1632
|
+
document.getElementById("comment_"+22723104).style.display = "none";
|
1633
|
+
}
|
1634
|
+
</script>
|
1635
|
+
|
1636
|
+
</div>
|
1637
|
+
|
1638
|
+
|
1639
|
+
|
1640
|
+
|
1641
|
+
</div>
|
1642
|
+
<div class="rz-ft"></div>
|
1643
|
+
</div>
|
1644
|
+
|
1645
|
+
|
1646
|
+
|
1647
|
+
|
1648
|
+
</li>
|
1649
|
+
|
1650
|
+
<!-- END INDIVIDUAL COMMENT -->
|
1651
|
+
|
1652
|
+
<!-- BEGIN INDIVIDUAL COMMENT -->
|
1653
|
+
<li class="clrfix rating_review">
|
1654
|
+
<div class="rz-w">
|
1655
|
+
|
1656
|
+
|
1657
|
+
|
1658
|
+
|
1659
|
+
<a href="http://my.foodnetwork.com/community/coleyk/style.esi?userid=42316468" ><img height="48" width="48" alt="" src="http://my.foodnetwork.com/skins/main/images/profilephotolookup/41_square.gif"></a>
|
1660
|
+
|
1661
|
+
|
1662
|
+
<div class="about-recipe-info">
|
1663
|
+
<div class="user-info clrfix">
|
1664
|
+
|
1665
|
+
<p>By <a href="http://my.foodnetwork.com/community/coleyk/style.esi?userid=42316468" >coleyk</a></p>
|
1666
|
+
|
1667
|
+
|
1668
|
+
<div id="cl-l-address" ><p></p></div>
|
1669
|
+
|
1670
|
+
</div>
|
1671
|
+
|
1672
|
+
<p>on April 23, 2011</p>
|
1673
|
+
|
1674
|
+
</div>
|
1675
|
+
</div>
|
1676
|
+
|
1677
|
+
|
1678
|
+
<!-- note...something about this class="rz-e" causes this div not to appear sometimes in IE7 -->
|
1679
|
+
<div class="rz-e" >
|
1680
|
+
<div class="rz-hd"></div>
|
1681
|
+
<div class="rz-bd">
|
1682
|
+
<div class="arrow"></div>
|
1683
|
+
|
1684
|
+
<div class="upper-quote clrfix">
|
1685
|
+
|
1686
|
+
<div class="upper-quote-hd"></div>
|
1687
|
+
<div class="upper-quote-bd clrfix reviewminilist">
|
1688
|
+
<p class="comment-rating"><span class="rating-sm-5"></span> </p>
|
1689
|
+
|
1690
|
+
|
1691
|
+
<p id="objCommentFlag2" class="flag"><a id="commens_link_22722848" href="javascript:void(0);" onclick="SNI.Community.Toolbox.doCommentsFlag('22722848',this);">Flag</a></p>
|
1692
|
+
|
1693
|
+
|
1694
|
+
|
1695
|
+
<div id="cgp-flyout-01-container" style="z-index: 15000;">
|
1696
|
+
<div id="cgp-flyout-a" style="z-index: 15001;">
|
1697
|
+
<div id="cgp-flyout-22722848" style="display: none;">
|
1698
|
+
<div id="cgp-d2c-flyout-top"></div>
|
1699
|
+
<div id="ieDiv3-d2c"></div>
|
1700
|
+
<div id="cgp-d2c-flyout-middle">
|
1701
|
+
<div id="cgp-flyout-content">
|
1702
|
+
<div id="cgp-flyout-t">
|
1703
|
+
|
1704
|
+
<div id="cgp-flyout-title"><h3>Flag This Review?</h3></div>
|
1705
|
+
<div id="cgp-flyout-close" onclick="SNI.Community.Widgets.displayOff('cgp-flyout-22722848');" ><a href="javascript:SNI.Community.Widgets.displayOff('cgp-flyout-22722848');"><img src="http://my.foodnetwork.com/skins/main/images/account/dot.gif" border="0"></a></div>
|
1706
|
+
<div id="up-clear"></div>
|
1707
|
+
</div>
|
1708
|
+
<div id="errorTextAltered_22722848" style="display: none;">You must provide a reason for flagging this review.</div>
|
1709
|
+
<div id="cgp-flyout-list">
|
1710
|
+
<!-- <p>Are you sure you want to flag this comment?</p> -->
|
1711
|
+
<p>Please provide the reason why you think this review is <b>inappropriate</b>.</p>
|
1712
|
+
<p id="comment_flag_reason_error_22722848" class="flp" style="display:none;"></p>
|
1713
|
+
<div id="emf-textarea-field" style="width: 210px;">
|
1714
|
+
<div id="emf-inner-textarea-field" style="width: 210px;">
|
1715
|
+
<textarea id="comment_flag_reason_22722848" style="width: 200px;"></textarea>
|
1716
|
+
|
1717
|
+
</div>
|
1718
|
+
<div id="up-clear"></div>
|
1719
|
+
</div>
|
1720
|
+
<div id="up-clear"></div>
|
1721
|
+
|
1722
|
+
</div>
|
1723
|
+
<div id="cgp-flyout-02-button">
|
1724
|
+
|
1725
|
+
<div id="cgp-nav" style="float: left;"><ul id="widget-nav"><li id="widget-nav-item"><a href="javascript:void(0);" onclick="SNI.Community.Widgets.flagAsInappropriate('22722848','reviews','commens_link_22722848','comments_text22722848','42316468');"><em>Flag This Review?</em></a></li></ul></div><div id="cgp-flyout-01-button02"><p>or <a href="javascript:SNI.Community.Widgets.displayOff('cgp-flyout-22722848');">Cancel</a></p></div>
|
1726
|
+
<div style="clear: both;"></div>
|
1727
|
+
</div>
|
1728
|
+
</div>
|
1729
|
+
</div>
|
1730
|
+
<div id="cgp-d2c-flyout-bottom"></div>
|
1731
|
+
</div>
|
1732
|
+
</div>
|
1733
|
+
</div>
|
1734
|
+
</div>
|
1735
|
+
<div class="upper-quote-ft"></div>
|
1736
|
+
|
1737
|
+
</div>
|
1738
|
+
<p id="comments_text22722848" class="quote">These were amazing! made em for Easter dinner tonight..everyone absolutely loved them! and talk about easy!</p>
|
1739
|
+
|
1740
|
+
<div class="end-quote"></div>
|
1741
|
+
|
1742
|
+
<div class="feeback-wrapper clrfix">
|
1743
|
+
|
1744
|
+
<small class="number-helpful"><label id="vote_use_22722848">0</label> people found this review Helpful.</small>
|
1745
|
+
|
1746
|
+
|
1747
|
+
<div id="comment_22722848">
|
1748
|
+
<small class="helpful-vote" id="was_this_928418">Was this review helpful to you?
|
1749
|
+
<a href="javascript:void(0);" id="yes_22722848" onclick="javascript:SNI.Community.Toolbox.secureReview('add','22722848','-1','19438196');"><strong>Yes</strong></a> |
|
1750
|
+
<a href="javascript:void(0);" id="no_22722848" onclick="javascript:SNI.Community.Toolbox.secureReview('remove','22722848','-1','19438196');"><strong>No</strong></a></small>
|
1751
|
+
</div>
|
1752
|
+
<script type="text/javascript">
|
1753
|
+
if(SNI.Community.Widgets.isAlreadyReviewed("Yes",'-1','22722848') || SNI.Community.Widgets.isAlreadyReviewed("No",'-1','22722848')){
|
1754
|
+
if((document.getElementById("comment_"+22722848) != null))
|
1755
|
+
document.getElementById("comment_"+22722848).style.display = "none";
|
1756
|
+
}
|
1757
|
+
</script>
|
1758
|
+
|
1759
|
+
</div>
|
1760
|
+
|
1761
|
+
|
1762
|
+
|
1763
|
+
|
1764
|
+
</div>
|
1765
|
+
<div class="rz-ft"></div>
|
1766
|
+
</div>
|
1767
|
+
|
1768
|
+
|
1769
|
+
|
1770
|
+
|
1771
|
+
</li>
|
1772
|
+
|
1773
|
+
<!-- END INDIVIDUAL COMMENT -->
|
1774
|
+
|
1775
|
+
|
1776
|
+
|
1777
|
+
</ul>
|
1778
|
+
|
1779
|
+
|
1780
|
+
</div><!--end ratings-reviews-list-inner-->
|
1781
|
+
</div>
|
1782
|
+
|
1783
|
+
|
1784
|
+
|
1785
|
+
|
1786
|
+
</div>
|
1787
|
+
|
1788
|
+
<div id="no-rev-msg" class="ft-rev">
|
1789
|
+
<div class="clrfix">
|
1790
|
+
<p><a href="/recipes/tyler-florence/roasted-asparagus-recipe/reviews/index.html">Read all 60 reviews</a></p>
|
1791
|
+
</div>
|
1792
|
+
</div>
|
1793
|
+
|
1794
|
+
|
1795
|
+
</div> <!-- #ratings-reviews -->
|
1796
|
+
|
1797
|
+
|
1798
|
+
|
1799
|
+
|
1800
|
+
|
1801
|
+
|
1802
|
+
|
1803
|
+
</div>
|
1804
|
+
</div>
|
1805
|
+
|
1806
|
+
|
1807
|
+
|
1808
|
+
|
1809
|
+
</div> <!-- fn-w -->
|
1810
|
+
<div id="fn-e">
|
1811
|
+
<!-- Endeca request http://searchServices.scrippsnetworks.com/food/cxfservice/recipe/nextRecipe/30733?maxResults=4 -->
|
1812
|
+
<div class="next-recipe clrfix">
|
1813
|
+
<h2>Next Recipe</h2>
|
1814
|
+
<div class="bd clrfix">
|
1815
|
+
<a rel="nri-1" href="/recipes/ina-garten/parmesan-roasted-asparagus-recipe/index.html" title="Parmesan Roasted Asparagus"><img width="92" height="69" alt="Parmesan Roasted Asparagus" src="http://img.foodnetwork.com/FOOD/2009/06/15/JI_23516_s4x3_sm.jpg"></a>
|
1816
|
+
|
1817
|
+
<a rel="nr-1" class="next-recp" href="/recipes/ina-garten/parmesan-roasted-asparagus-recipe/index.html"></a>
|
1818
|
+
<a rel="nr-2" href="/recipes/ina-garten/parmesan-roasted-asparagus-recipe/index.html" title="Parmesan Roasted Asparagus"><h3>Parmesan Roasted Asparagus</h3></a><cite>By: <a rel="nr-3" href="/ina-garten/index.html">Ina Garten</a></cite><div class="rating-box rating sm value-title stars5" title="5 Stars">
|
1819
|
+
<span>Rated 5 stars out of 5</span>
|
1820
|
+
</div>
|
1821
|
+
</div>
|
1822
|
+
</div>
|
1823
|
+
|
1824
|
+
<script type="text/javascript">
|
1825
|
+
SNI.Food.Omniture.ClickTrack(".next-recipe", "FOOD : Next Recipe Top Right ");
|
1826
|
+
</script>
|
1827
|
+
|
1828
|
+
|
1829
|
+
<div class="mrec">
|
1830
|
+
<div id="bigbox"><script type="text/javascript">BigboxAd(5);</script></div>
|
1831
|
+
<span>Advertisement</span>
|
1832
|
+
</div>
|
1833
|
+
|
1834
|
+
|
1835
|
+
|
1836
|
+
<div class="promo ontv pod cabbage" id="onTvMod">
|
1837
|
+
<div class="hd">
|
1838
|
+
<h4>On TV</h4>
|
1839
|
+
<p class="jump"><a href="http://www.foodnetwork.com/food/programdaily/0,,FOOD_32078__EST,00.html">Full Schedule</a> · <a href="/shows/index.html#tva-z">Shows A-Z</a></p>
|
1840
|
+
</div>
|
1841
|
+
<div class="bd clrfix">
|
1842
|
+
<span id="on-air"></span>
|
1843
|
+
<dl>
|
1844
|
+
<dt><p><strong>What's Hot</strong></p></dt>
|
1845
|
+
<dd class="talent"><a href="/diners-drive-ins-and-dives/index.html"><img title="Guy Fieri of Diners, Drive-ins and Dives" src="http://img.foodnetwork.com/FOOD/2008/08/13/av-guy-fieri.jpg" height="48" width="48"></a></dd>
|
1846
|
+
<dd><p><strong><a href="/diners-drive-ins-and-dives/index.html">Diners, Drive-ins and Dives</a></strong></p><cite>Hosted by: <a href="/guy-fieri/index.html">Guy Fieri</a></cite></dd>
|
1847
|
+
</dl>
|
1848
|
+
</div><!--//bd-->
|
1849
|
+
<div class="ft"></div>
|
1850
|
+
</div><!--//podontvcabbage-->
|
1851
|
+
<script type="text/javascript">SNI.Food.Omniture.ClickTrack("#onTvMod","On TV");</script>
|
1852
|
+
<script type="text/javascript">SNI.Recipe.Ontv.list();</script>
|
1853
|
+
<div class="popular promo">
|
1854
|
+
<div class="hd">
|
1855
|
+
<h4>Most Popular Right Now</h4>
|
1856
|
+
</div><div class="mod">
|
1857
|
+
<h4>Recipes</h4>
|
1858
|
+
<p class="jump"><a href="http://www.foodnetwork.com/recipes-and-cooking/index.html" rel="mpr-1">See More Recipes »</a></p><div class="bd clrfix">
|
1859
|
+
<a rel="mpr-2" title="Buffalo Wings" href="/recipes/good-eats/buffalo-wings-recipe/index.html">
|
1860
|
+
<img width="92" height="69" alt="Buffalo Wings" src="http://img.foodnetwork.com/FOOD/2011/11/22/FN_buffalo-wings-001_s4x3_sm.jpg"></a>
|
1861
|
+
<p><a rel="mpr-2" href="/recipes/good-eats/buffalo-wings-recipe/index.html">Buffalo Wings</a></p>
|
1862
|
+
<div class="rating-box rating sm value-title stars5" title="5 Stars"><span>Rated 5 stars out of 5</span></div>
|
1863
|
+
<cite class="rev">296 Reviews</cite>
|
1864
|
+
<cite>
|
1865
|
+
<fb:like href="http://foodnetwork.com/recipes/good-eats/buffalo-wings-recipe/index.html" layout="button_count" show_faces="false" width="170" font=""></fb:like>
|
1866
|
+
</cite>
|
1867
|
+
</div><div class="bd clrfix">
|
1868
|
+
<a rel="mpr-3" title="Guacamole" href="/recipes/alton-brown/guacamole-recipe/index.html">
|
1869
|
+
<img width="92" height="69" alt="Guacamole" src="http://img.foodnetwork.com/FOOD/2011/04/07/EA1F08_guacamole_s4x3_sm.jpg"></a>
|
1870
|
+
<p><a rel="mpr-3" href="/recipes/alton-brown/guacamole-recipe/index.html">Guacamole</a></p>
|
1871
|
+
<div class="rating-box rating sm value-title stars5" title="5 Stars"><span>Rated 5 stars out of 5</span></div>
|
1872
|
+
<cite class="rev">441 Reviews</cite>
|
1873
|
+
<cite>
|
1874
|
+
<fb:like href="http://foodnetwork.com/recipes/alton-brown/guacamole-recipe/index.html" layout="button_count" show_faces="false" width="170" font=""></fb:like>
|
1875
|
+
</cite>
|
1876
|
+
</div><div class="bd clrfix">
|
1877
|
+
<a rel="mpr-4" title="Super Nachos" href="/recipes/rachael-ray/super-nachos-recipe/index.html">
|
1878
|
+
<img width="92" height="69" alt="Super Nachos" src="http://img.foodnetwork.com/FOOD/2011/04/07/TM1C48_super-nachos_s4x3_sm.jpg"></a>
|
1879
|
+
<p><a rel="mpr-4" href="/recipes/rachael-ray/super-nachos-recipe/index.html">Super Nachos</a></p>
|
1880
|
+
<div class="rating-box rating sm value-title stars5" title="5 Stars"><span>Rated 5 stars out of 5</span></div>
|
1881
|
+
<cite class="rev">124 Reviews</cite>
|
1882
|
+
<cite>
|
1883
|
+
<fb:like href="http://foodnetwork.com/recipes/rachael-ray/super-nachos-recipe/index.html" layout="button_count" show_faces="false" width="170" font=""></fb:like>
|
1884
|
+
</cite>
|
1885
|
+
</div></div> <!-- div class mod --><div class="mod gallery clrfix">
|
1886
|
+
<h4>Photo Galleries</h4><div class="bd">
|
1887
|
+
<a rel="mpgi-1" title="Super Bowl Snacks" href="/holidays-and-parties/super-bowl-snacks/pictures/index.html">
|
1888
|
+
<img alt="Super Bowl Snacks" src="http://img.foodnetwork.com/FOOD/2009/12/13/FNM_010110-Wings-004-A_s4x3_tz.jpg"></a>
|
1889
|
+
<p><a rel="mpg-1" href="/holidays-and-parties/super-bowl-snacks/pictures/index.html">Super Bowl Snacks</a></p>
|
1890
|
+
</div><div class="bd last">
|
1891
|
+
<a rel="mpgi-2" title="Super Bowl Snacks" href="/holidays-and-parties/super-bowl-snacks/pictures/index.html">
|
1892
|
+
<img alt="Super Bowl Snacks" src="http://img.foodnetwork.com/FOOD/2011/11/22/FN_quesadillas-008_s4x3_tz.jpg"></a>
|
1893
|
+
<p><a rel="mpg-2" href="/holidays-and-parties/super-bowl-snacks/pictures/index.html">Super Bowl Snacks</a></p>
|
1894
|
+
</div></div> <!-- end of gallery mod --><div class="mod">
|
1895
|
+
<h4>Videos</h4>
|
1896
|
+
<p class="jump"><a rel="mpv-1" href="http://www.foodnetwork.com/food-network-full-episodes/videos/index.html">Watch More Videos »</a></p><div class="bd clrfix">
|
1897
|
+
<a class="ico-video sm" rel="mpvi-1" title="Mac and Cheese Throwdown" href="/videos/mac-and-cheese-throwdown/28309.html">
|
1898
|
+
<img alt="Mac and Cheese Throwdown" src="http://images.scrippsnetworks.com/up/images/0122/0122888_92x69.jpg"><span class="play-button"></span></a>
|
1899
|
+
<p><a rel="mpv-2" href="/videos/mac-and-cheese-throwdown/28309.html">Mac and Cheese Throwdown</a></p>
|
1900
|
+
<cite>7242 views</cite>
|
1901
|
+
<cite>03:01</cite>
|
1902
|
+
</div><div class="bd clrfix">
|
1903
|
+
<a class="ico-video sm" rel="mpvi-2" title="Baked Mac and Cheese" href="/videos/baked-mac-and-cheese/32452.html">
|
1904
|
+
<img alt="Baked Mac and Cheese" src="http://images.scrippsnetworks.com/up/images/0124/0124787_92x69.jpg"><span class="play-button"></span></a>
|
1905
|
+
<p><a rel="mpv-3" href="/videos/baked-mac-and-cheese/32452.html">Baked Mac and Cheese</a></p>
|
1906
|
+
<cite>2101 views</cite>
|
1907
|
+
<cite>04:22</cite>
|
1908
|
+
</div></div> <!-- end of video mod --><!-- Endeca request http://searchServices.scrippsnetworks.com/food/service/inOurStore/foodNetworkStore/RECIPE-30733-2,0.xml -->
|
1909
|
+
<div class="mod">
|
1910
|
+
<h4>Today's Deal</h4>
|
1911
|
+
<p class="jump"><a rel="mpd-1" href="http://www.foodnetworkstore.com/">Browse More Products »</a></p><div class="bd clrfix">
|
1912
|
+
<a rel="mpdi-2" href="http://www.foodnetworkstore.com/product/shop/133285/ccaid=FNFNRSS133285" title="Blue Lazy Spoon and Ladle Set by Rachael Ray"><img width="92" height="69" alt="Blue Lazy Spoon and Ladle Set by Rachael Ray" src="http://ifeed.foodnetworkstore.com/images/products/Search_Large/133285.jpg"></a>
|
1913
|
+
|
1914
|
+
<p><a rel="mpd-2" href="http://www.foodnetworkstore.com/product/shop/133285/ccaid=FNFNRSS133285">Blue Lazy Spoon and Ladle Set by Rachael Ray</a></p>
|
1915
|
+
<cite>$17.56</cite> </div><div class="bd clrfix">
|
1916
|
+
<a rel="mpdi-3" href="http://www.foodnetworkstore.com/product/shop/601120/ccaid=FNFNRSS601120" title="Orange Tong Set by Rachael Ray"><img width="92" height="69" alt="Orange Tong Set by Rachael Ray" src="http://ifeed.foodnetworkstore.com/images/products/Search_Large/601120.jpg"></a>
|
1917
|
+
|
1918
|
+
<p><a rel="mpd-3" href="http://www.foodnetworkstore.com/product/shop/601120/ccaid=FNFNRSS601120">Orange Tong Set by Rachael Ray</a></p>
|
1919
|
+
<cite>$23.96</cite> </div></div>
|
1920
|
+
</div>
|
1921
|
+
<script type="text/javascript">
|
1922
|
+
SNI.Food.Omniture.ClickTrack(".popular", "FOOD : Most Popular - RR");
|
1923
|
+
</script>
|
1924
|
+
<div class='promo pod hummus promo-pod-with-body' id='more-recipes-food-com'>
|
1925
|
+
<div class='hd'><h4>See More Recipes Like This From Food.com</h4>
|
1926
|
+
</div>
|
1927
|
+
<div class='bd clrfix'>
|
1928
|
+
<ul class='list-store-item'>
|
1929
|
+
<li><a href='http://healthy.food.com/'>Healthy Recipes</a></li>
|
1930
|
+
<li><a href='http://healthy.food.com/recipes/healthy-low-fat'>Low Fat Recipes</a></li>
|
1931
|
+
<li><a href='http://healthy.food.com/recipes/healthy-vegetarian'>Healthy Vegetarian</a></li>
|
1932
|
+
<li><a href='http://healthy.food.com/recipes/healthy-salads'>Salad Recipes</a></li>
|
1933
|
+
<li><a href='http://www.food.com/recipes/gluten-free'>Gluten-Free Recipes</a></li>
|
1934
|
+
|
1935
|
+
</ul></div><div class='ft'>
|
1936
|
+
</div>
|
1937
|
+
</div>
|
1938
|
+
|
1939
|
+
<script type='text/javascript'>
|
1940
|
+
SNI.Food.Omniture.ClickTrackSingle('#more-recipes-food-com', 'More Recipes From Food.com', 'Recipes and Cooking');
|
1941
|
+
</script>
|
1942
|
+
|
1943
|
+
<!-- BEGIN ENDECA RESULT MODULE- sponsoredPod --><!-- Endeca request: sponsorPod/sponsorPod.xsl/RECIPE-30733-0,0-FN12_VALENTINESDAY.xml --><div class="promo eel pod" id="sponsor-module1">
|
1944
|
+
<div class="hd">
|
1945
|
+
<h4>
|
1946
|
+
<a rel="sm1-head" href="http://www.foodnetwork.com/mobile/package/index.html?xp=itkapp">Take Food Network on Your Next Grocery Trip</a>
|
1947
|
+
</h4>
|
1948
|
+
</div>
|
1949
|
+
<div class="bd clrfix">
|
1950
|
+
<a rel="sm1-img" href="http://www.foodnetwork.com/mobile/package/index.html?xp=itkapp"><img src="http://img.foodnetwork.com/FOOD/2010/10/20/iPhone_ITK-Startup-Screen_s92x69.jpg" alt="Take Food Network on Your Next Grocery Trip"></a>
|
1951
|
+
<p>Access Food Network anywhere, anytime, including all your favorite recipes from star chefs. <a href=http://www.foodnetwork.com/mobile/package/index.html?xp=itkapp target=”_blank”> Check It Out </a></p>
|
1952
|
+
</div>
|
1953
|
+
<div class="ft"></div>
|
1954
|
+
</div><script type="text/javascript">
|
1955
|
+
|
1956
|
+
SNI.Food.Omniture.ClickTrack("#sponsor-module1", "Food:Site: Sponsor Module 1", "Sponsor_Module_1")
|
1957
|
+
|
1958
|
+
</script>
|
1959
|
+
<!-- END ENDECA RESULT -->
|
1960
|
+
<!-- BEGIN ENDECA RESULT MODULE- editorialPod --><!--Endeca request http://searchServices.scrippsnetworks.com/food/service/editorialPod/editorialPod.xsl/RECIPE-30733-0,0.xml --> <!-- END ENDECA RESULT -->
|
1961
|
+
<!-- BEGIN ENDECA RESULT MODULE- newsletterOptIn --><!-- Endeca request http://searchServices.scrippsnetworks.com/food/cxfservice/newsletter/promotionWording?sectionName=RECIPES --> <div id="newsl-pod" class="pod" >
|
1962
|
+
<div class="bd">
|
1963
|
+
<div class="hd">
|
1964
|
+
<h4 class="title">
|
1965
|
+
Free Recipe of the Day Newsletter
|
1966
|
+
</h4>
|
1967
|
+
</div>
|
1968
|
+
<div class="bd clrfix">
|
1969
|
+
<div id="newsl_form_wrapper">
|
1970
|
+
<p class="lead_message">
|
1971
|
+
Let Food Network chefs plan what's for dinner, with quick and easy recipes delivered to your inbox daily.
|
1972
|
+
</p>
|
1973
|
+
<p class="error"></p>
|
1974
|
+
<form id="newsl_form" method="get" action="http://mynewsletters.scrippsnetworks.com:8080/subscription/subscribe?">
|
1975
|
+
|
1976
|
+
<fieldset class="email">
|
1977
|
+
<label for="newsl_your_email">E-Mail Address:</label>
|
1978
|
+
<span>
|
1979
|
+
<div class="text-box" >
|
1980
|
+
<span>
|
1981
|
+
<input id="newsl_your_email" name="emailaddress" type="text"/>
|
1982
|
+
</span>
|
1983
|
+
</div>
|
1984
|
+
<button class="button" type="submit"><span>CONTINUE</span></button>
|
1985
|
+
</span>
|
1986
|
+
</fieldset>
|
1987
|
+
|
1988
|
+
<input type="hidden" name="brand" value="foodnet" >
|
1989
|
+
<input type="hidden" name="subscription_lists" value="FNRD">
|
1990
|
+
<input type="hidden" name="source" value="MODULE_FNRD">
|
1991
|
+
</form>
|
1992
|
+
</div>
|
1993
|
+
|
1994
|
+
</div>
|
1995
|
+
</div>
|
1996
|
+
<div class="ft"></div>
|
1997
|
+
</div>
|
1998
|
+
|
1999
|
+
<script type="text/javascript">
|
2000
|
+
SNI.Food.newsletters.inlineSubscribe("#newsl_form");
|
2001
|
+
</script>
|
2002
|
+
<!-- END ENDECA RESULT -->
|
2003
|
+
|
2004
|
+
<div class="promo pepper pod google-text-ads">
|
2005
|
+
<div class="hd">
|
2006
|
+
<h4>Ads by Google</h4>
|
2007
|
+
</div>
|
2008
|
+
<div class="bd plain clrfix">
|
2009
|
+
<script type="text/javascript">GoogleBixboxAd(1);</script>
|
2010
|
+
</div>
|
2011
|
+
<div class="ft"></div>
|
2012
|
+
</div>
|
2013
|
+
<script type="text/javascript" language="JavaScript">VswAd(1);</script>
|
2014
|
+
|
2015
|
+
|
2016
|
+
</div> <!-- fn-e -->
|
2017
|
+
|
2018
|
+
</div>
|
2019
|
+
</div>
|
2020
|
+
</div>
|
2021
|
+
<div class="ft"></div>
|
2022
|
+
</div>
|
2023
|
+
|
2024
|
+
|
2025
|
+
<!-- ----------------------BEGIN SITE FOOTER REGION ----------------------- -->
|
2026
|
+
|
2027
|
+
<div id="sponsor-links"><div class="wrap"><div class="bd clrfix">
|
2028
|
+
<h4>Ideas From FoodNetwork.com</h4><ul>
|
2029
|
+
<li><a rel="sl-1" title="Weeknight Stir-Fries" href="/winter-produce-guide/package/index.html">Weeknight Stir-Fries</a></li><li><a rel="sl-2" title="Recipes for Romance" href="/valentines-day/package/index.html">Recipes for Romance</a></li><li><a rel="sl-3" title="Award-Worthy Eats" href="/dinner-and-a-movie/package/index.html">Award-Worthy Eats</a></li>
|
2030
|
+
</ul><ul>
|
2031
|
+
<li><a rel="sl-4" title="Giada's Pasta Picks" href="/italian-cooking-basics/package/index.html">Giada’s Pasta Picks</a></li><li><a rel="sl-5" title="Cold-Weather Weeknight Dinners" href="/recipes-and-cooking/5-cold-weather-weeknight-dinners/pictures/index.html">Cold-Weather Weeknight Dinners</a></li><li><a rel="sl-6" title="Everyday Sausage Recipes" href="/make-it-5-ways-sausage/package/index.html">Everyday Sausage Recipes</a></li>
|
2032
|
+
</ul><ul>
|
2033
|
+
<li><a rel="sl-7" title="Guy's Veggie-Packed Pasta" href="/cooking-with-kids/package/index.html">Guy’s Veggie-Packed Pasta</a></li><li><a rel="sl-8" title="Comfort Food Classics" href="/comfort-foods/package/index.html">Comfort Food Classics</a></li><li><a rel="sl-9" title="All-Star Snacks" href="/snacks/package/index.html">All-Star Snacks</a></li>
|
2034
|
+
</ul><ul>
|
2035
|
+
<li><a rel="sl-10" title="30-Minute Dinners" href="/quick-fix-meals-30-minutes-or-less/package/index.html">30-Minute Dinners</a></li><li><a rel="sl-11" title="How to Prep, Cook and Serve" href="/food-network-essentials/package/index.html">How to Prep, Cook and Serve</a></li><li><a rel="sl-12" title="Contests and Promotions" href="/about-us/contests-and-promotions-from-our-advertisers/index.html">Contests and Promotions</a></li>
|
2036
|
+
</ul>
|
2037
|
+
</div></div></div><script type="text/javascript"> SNI.Food.Omniture.ClickTrack('#sponsor-links', 'Sponsor Links'.replace('’','\u0027'));</script>
|
2038
|
+
<div id="xpromo-ft" class="clrfix"><div class="content clrfix"><div class="wrap clrfix">
|
2039
|
+
<!-- more from fn include goes here --><div id="modInst1362636" class="internal">
|
2040
|
+
<h4>More From Food Network</h4><ul>
|
2041
|
+
<li><a rel="mfn-l1" title="Sweepstakes and Contests" href="/about-us/sweepstakes-and-contests/index.html">Sweepstakes and Contests</a></li><li>
|
2042
|
+
<a rel="mfn-l2" title="Facebook" href="http://www.facebook.com/foodnetwork">Facebook</a> and <a rel="mfn-l2-s2" title="Twitter" href="http://twitter.com/foodnetwork">Twitter</a>
|
2043
|
+
</li><li>
|
2044
|
+
<a rel="mfn-l3" title="iTunes" href="/food-network-nighttime-iphone/package/index.html">iTunes</a> and <a rel="mfn-l3-s2" title="Mobile" href="/mobile/package/index.html">Mobile</a>
|
2045
|
+
</li><li><a rel="mfn-l4" title="Food Network Everywhere" href="/fn-everywhere/package/index.html#Food Network Everywhere">Food Network Everywhere</a></li><li><a rel="mfn-l5" title="Share Our Strength" href="/share-our-strength/package/index.html">Share Our Strength</a></li><li><a rel="mfn-l6" title="Recipes A-Z" href="http://www.foodnetwork.com/food/about_us/index/0,1000854,FOOD_32959_93219_-1,00.html?QP">Recipes A-Z</a></li><li><a rel="mfn-l7" title="Topics A-Z" href="/topics/index.html">Topics A-Z</a></li>
|
2046
|
+
</ul>
|
2047
|
+
</div><script type="text/javascript"> SNI.Food.Omniture.ClickTrack('#modInst1362636', 'Default Food More From Food Network'.replace('’','\u0027'));</script><div id="crsl-sisters" class="skin-crsl-ft corners-crsl-ft crsl">
|
2048
|
+
<div class="hd"><h3>Food Network Family</h3></div><div class="bd"><div class="crsl-wrap"><ul>
|
2049
|
+
<li><div class="item-wrap">
|
2050
|
+
<h4><a rel="ss-p1-t" target="_blank" title="Cooking Channel" href="http://www.cookingchanneltv.com/?xp=food_footer">Cooking Channel</a></h4><div class="bd"><ul>
|
2051
|
+
<li><a rel="ss-p1-l1" target="_blank" title="Chocolate Desserts" href="http://www.cookingchanneltv.com/recipes/chocolate-desserts/pictures/index.html?xp=food_footer">Chocolate Desserts</a></li><li><a rel="ss-p1-l2" target="_blank" title="Romantic Menu for Two" href="http://www.cookingchanneltv.com/recipes/valentines-day-dinner-recipes/pictures/index.html?xp=food_footer">Romantic Menu for Two</a></li><li><a rel="ss-p1-l3" target="_blank" title="Valentine's Day Recipes" href="http://www.cookingchanneltv.com/valentines-day/package/index.html?xp=food_footer">Valentine's Day Recipes</a></li>
|
2052
|
+
</ul></div>
|
2053
|
+
</div></li><li class="mid"><div class="item-wrap">
|
2054
|
+
<h4><a rel="ss-p2-t" target="_blank" title="Travel Channel" href="http://www.travelchannel.com/?xp=food_footer">Travel Channel</a></h4><div class="bd"><p>
|
2055
|
+
<a rel="ss-p2-i" href="http://www.travelchannel.com/tv-shows/bizarre-foods?xp=bizfoods" title="Bizarre Foods America" target="_blank"><img data-src="http://img.foodnetwork.com/FOOD/2011/12/22/BFA_banner_s92x69.jpg" alt="Bizarre Foods America" height="69" width="92"></a><a rel="ss-p2-l" target="_blank" title="Bizarre Foods America" href="http://www.travelchannel.com/tv-shows/bizarre-foods?xp=bizfoods">Bizarre Foods America</a>
|
2056
|
+
</p></div>
|
2057
|
+
</div></li><li><div class="item-wrap last">
|
2058
|
+
<h4><a rel="ss-p3-t" target="_blank" title="Food Network Everywhere" href="http://www.foodnetwork.com/fn-everywhere/package/index.html?xp=food_footer">Food Network Everywhere</a></h4><div class="bd"><ul>
|
2059
|
+
<li><a rel="ss-p3-l1" target="_blank" title="Get Our Recipe App" href="http://www.foodnetwork.com/mobile/package/index.html?xp=itkapp">Get Our Recipe App</a></li><li><a rel="ss-p3-l2" target="_blank" title="Anne Burrell Cookbook" href="http://www.foodnetworkstore.com/ProductDetail.aspx?R=367085&CCAID=FNPTONPR">Anne Burrell Cookbook</a></li><li><a rel="ss-p3-l3" target="_blank" title="Get Food Network Magazine" href="https://subscribe.hearstmags.com/subscribe/splits/foodnetmag/fnm_footer_carousel">Get Food Network Magazine</a></li>
|
2060
|
+
</ul></div>
|
2061
|
+
</div></li><li><div class="item-wrap">
|
2062
|
+
<h4><a rel="ss-p4-t" target="_blank" title="DIY Network" href="http://www.food.com/?xp=food_footer">Food.com</a></h4><div class="bd"><ul>
|
2063
|
+
<li><a rel="ss-p4-l1" target="_blank" title="Woo Your Valentine" href="http://www.food.com/valentines-day/home/package?xp=food_footer">Woo Your Valentine</a></li><li><a rel="ss-p4-l2" target="_blank" title="Comfort Food Faves" href="http://www.food.com/comfort-food/home/package?xp=food_footer">Comfort Food Faves</a></li><li><a rel="ss-p4-l3" target="_blank" title="Easy Entertaining Ideas" href="http://www.food.com/easy-entertaining/home/package?xp=food_footer">Easy Entertaining Ideas</a></li>
|
2064
|
+
</ul></div>
|
2065
|
+
</div></li><li class="mid"><div class="item-wrap">
|
2066
|
+
<h4><a rel="ss-p5-t" target="_blank" title="HGTV" href="http://www.hgtv.com/?xp=food_footer">HGTV</a></h4><div class="bd"><p>
|
2067
|
+
<a rel="ss-p5-i" href="http://www.hgtv.com/hgtv-dream-home-2012-giveaway/package/index.html?xp=dh_sweeps" title="Enter the HGTV Dream Home Sweeps" target="_blank"><img data-src="http://hgtv.sndimg.com/HGTV/2011/11/15/09-DH2012_Front-GMC-Driveway2_s4x3_sm.jpg" alt="Enter the HGTV Dream Home Sweeps" height="69" width="92"></a><a rel="ss-p5-l" target="_blank" title="Enter the HGTV Dream Home Sweeps" href="http://www.hgtv.com/hgtv-dream-home-2012-giveaway/package/index.html?xp=dh_sweeps">Enter the HGTV Dream Home Giveaway</a>
|
2068
|
+
</p></div>
|
2069
|
+
</div></li><li><div class="item-wrap last">
|
2070
|
+
<h4><a rel="ss-p6-t" target="_blank" title="DIY Network" href="http://www.diynetwork.com/?xp=food_footer">DIY Network</a></h4><div class="bd"><ul>
|
2071
|
+
<li><a rel="ss-p6-l1" target="_blank" title="Blog Cabin 2012: Vote Now!" href="http://www.diynetwork.com/blog-cabin/index.html?xp=blog">Blog Cabin 2012: Vote Now!</a></li><li><a rel="ss-p6-l2" target="_blank" title="Latest Wall Covering Trends" href="http://www.diynetwork.com/windows-walls-and-doors/the-latest-in-wall-covering-trends/pictures/index.html?xp=food_footer">Latest Wall Covering Trends</a></li><li><a rel="ss-p6-l3" target="_blank" title="Remodel with Salvaged Items" href="http://www.diynetwork.com/kitchen/remodeling-your-kitchen-with-salvaged-items/index.html?xp=food_footer">Remodel with Salvaged Items</a></li>
|
2072
|
+
</ul></div>
|
2073
|
+
</div></li><li><div class="item-wrap">
|
2074
|
+
<h4><a rel="ss-p7-t" target="_blank" title="FrontDoor" href="http://www.frontdoor.com/?xp=food_footer">FrontDoor</a></h4><div class="bd"><ul>
|
2075
|
+
<li><a rel="ss-p7-l1" target="_blank" title="Dream Home Second Entry" href="http://www.frontdoor.com/buy/dream-home-2012-sweeps-main/56090?xp=dh_sweeps">Dream Home Second Entry</a></li><li><a rel="ss-p7-l2" target="_blank" title="Tour Park City" href="http://www.frontdoor.com/buy/hgtv-dream-home-2012-videos/56296?xp=dh_utah">Tour Park City</a></li><li><a rel="ss-p7-l3" target="_blank" title="Explore Past Dream Homes" href="http://www.frontdoor.com/buy/home-styles-and-sites-of-past-hgtv-dream-homes/56055?xp=food_footer">Explore Past Dream Homes</a></li>
|
2076
|
+
</ul></div>
|
2077
|
+
</div></li><li class="mid"><div class="item-wrap">
|
2078
|
+
<h4><a rel="ss-p8-t" target="_blank" title="HGTVRemodels" href="http://www.hgtvremodels.com/?xp=food_footer">HGTVRemodels</a></h4><div class="bd"><p>
|
2079
|
+
<a rel="ss-p8-i" href="http://www.hgtvremodels.com/?xp=hgrm" title="Beautiful Possibilities for every space. Start Your Remodel." target="_blank"><img data-src="http://hgrm.sndimg.com/HGRM/2011/10/03/HGRM_kitchen_s92x69.jpg" alt="Beautiful Possibilities for every space. Start Your Remodel." height="69" width="92"></a><a rel="ss-p8-l" target="_blank" title="Beautiful Possibilities for every space. Start Your Remodel." href="http://www.hgtvremodels.com/?xp=hgrm">Beautiful Possibilities. Start Your Remodel.</a>
|
2080
|
+
</p></div>
|
2081
|
+
</div></li><li><div class="item-wrap last">
|
2082
|
+
<h4><a rel="ss-p9-t" target="_blank" title="HGTVRemodels" href="http://www.gactv.com/?xp=food_footer">GAC</a></h4><div class="bd"><ul>
|
2083
|
+
<li><a rel="ss-p9-l1" target="_blank" title="Tim & Faith Down Under" href="http://www.gactv.com/gac/pac_ctnt/text/0,,gac_26058_104607,00.html?xp=food_footer">Tim & Faith Down Under</a></li><li><a rel="ss-p9-l2" target="_blank" title="Vote ACM New Artist" href="http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_84999,0.html?xp=acm">Vote ACM New Artist</a></li><li><a rel="ss-p9-l3" target="_blank" title="Watch The Judds" href="http://www.gactv.com/gac/shows_gcown?xp=food_footer">Watch The Judds</a></li>
|
2084
|
+
</ul></div>
|
2085
|
+
</div></li>
|
2086
|
+
</ul></div></div><div class="ft"></div>
|
2087
|
+
</div>
|
2088
|
+
</div></div></div><script type="text/javascript">
|
2089
|
+
SNI.Common.Carousel("#crsl-sisters", {visible:3});
|
2090
|
+
</script><script type="text/javascript"> SNI.Food.Omniture.ClickTrack('#crsl-sisters', 'Default Food Sister Site Carousel'.replace('’','\u0027'));</script>
|
2091
|
+
<div id="fn-ft" class="clrfix">
|
2092
|
+
<div class="wrap">
|
2093
|
+
<div class="nav-wrap"></div>
|
2094
|
+
<div class="nav clrfix">
|
2095
|
+
<div class="brand">
|
2096
|
+
<a rel="gf-logo" href="/">
|
2097
|
+
<span>Food Network</span>
|
2098
|
+
<img src="http://images.foodnetwork.com/webfood/fn20/imgs/ft-brand.png" alt="Food Network"/>
|
2099
|
+
</a>
|
2100
|
+
</div>
|
2101
|
+
<ul>
|
2102
|
+
<li><a rel="gf-nav-1" href="/">FoodNetwork.com Home</a></li>
|
2103
|
+
<li><a rel="gf-nav-2" href="/recipes-and-cooking/index.html">Recipes & Cooking</a></li>
|
2104
|
+
<li><a rel="gf-nav-3" href="/quick-and-easy/index.html">Quick & Easy</a></li>
|
2105
|
+
<li><a rel="gf-nav-4" href="/healthy-eating/index.html">Healthy Eating</a></li>
|
2106
|
+
<li><a rel="gf-nav-5" href="/holidays-and-parties/index.html">Holidays & Parties</a></li>
|
2107
|
+
<li><a rel="gf-nav-6" href="/shows/index.html">Shows</a></li>
|
2108
|
+
<li><a rel="gf-nav-7" href="/chefs/index.html">Chefs</a></li>
|
2109
|
+
<li><a rel="gf-nav-8" href="/video-library/index.html">Video</a></li>
|
2110
|
+
<li><a rel="gf-nav-9" href="http://www.foodnetworkstore.com/?ccaid=FNFNSHOPTABF" target="_blank">Shop</a></li>
|
2111
|
+
</ul>
|
2112
|
+
</div>
|
2113
|
+
<div id="international_edition_container" style="display: none;">
|
2114
|
+
<div id="international_edition_popup" style="display: none;">
|
2115
|
+
<div class="hd"></div>
|
2116
|
+
<div class="bd clrfix">
|
2117
|
+
<h3>International Editions</h3>
|
2118
|
+
<ul>
|
2119
|
+
<li><a rel="gf-int-ed-US" href="http://www.foodnetwork.com">United States <span class="US-flag international-flag"> </span></a></li>
|
2120
|
+
<li><a rel="gf-int-ed-UK" href="http://www.foodnetwork.co.uk">United Kingdom <span class="UK-flag international-flag"> </span></a></li>
|
2121
|
+
<li><a rel="gf-int-ed-ASI" href="http://www.foodnetworkasia.com">Asia <span class="international-flag"> </span></a></li>
|
2122
|
+
<li><a rel="gf-int-ed-EMA" href="http://www.foodnetworktv.com">Europe, Middle East & Africa <span class="international-flag"> </span></a></li>
|
2123
|
+
</ul>
|
2124
|
+
<span class="close">x</span>
|
2125
|
+
</div>
|
2126
|
+
<div class="ft"></div>
|
2127
|
+
</div>
|
2128
|
+
<span id="international_edition_link">International Editions <span id="international_edition_link_arrow"> </span></span>
|
2129
|
+
</div>
|
2130
|
+
|
2131
|
+
<script type="text/javascript">
|
2132
|
+
if(typeof(jQuery) === 'function') {
|
2133
|
+
(function($) {
|
2134
|
+
$(function() {
|
2135
|
+
$('#international_edition_container').css('display', 'block');
|
2136
|
+
$('#international_edition_popup .close').click(function() {
|
2137
|
+
$(this).closest('#international_edition_popup').hide();
|
2138
|
+
});
|
2139
|
+
$('#international_edition_link').click(function() {
|
2140
|
+
$('#international_edition_popup').show();
|
2141
|
+
});
|
2142
|
+
});
|
2143
|
+
})(jQuery);
|
2144
|
+
}
|
2145
|
+
</script>
|
2146
|
+
|
2147
|
+
<div class="search clrfix">
|
2148
|
+
<form id="foodSearchForm" name="FooterSearchForm" action="/search/delegate.do" method="get">
|
2149
|
+
<div class="input">
|
2150
|
+
<input name="fnSearchString" id="ft-search-input"/>
|
2151
|
+
</div>
|
2152
|
+
<input type="hidden" value="Site" name="fnSearchType"/>
|
2153
|
+
<button type="submit" title="Search" id="ft-search-submit">
|
2154
|
+
<span>Search</span>
|
2155
|
+
</button>
|
2156
|
+
</form>
|
2157
|
+
|
2158
|
+
</div>
|
2159
|
+
<div class="links clrfix">
|
2160
|
+
|
2161
|
+
<div class="legal">
|
2162
|
+
<ul>
|
2163
|
+
<li><a rel="gf-legal-1" href="/site-map/package/index.html ">Site Map</a></li>
|
2164
|
+
<li><a rel="gf-legal-2" href="http://www.scrippsnetworks.com/terms.aspx" target="_blank">Terms of Use</a></li>
|
2165
|
+
<li><a href="http://dv.privacychoice.org/index.php/preferenceManager/global?company_id=40" target="_blank">Ad Choices<img src="http://adimages.scrippsnetworks.com/daaIcon/daaIcon.png" border="0" alt="DAA Icon"/></a></li>
|
2166
|
+
<li><a rel="gf-legal-3" href="/home/dmca-digital-millennium-copyright-act-notice-and-policy/index.html">Infringements</a></li>
|
2167
|
+
<li><a rel="gf-legal-4" href="http://www.scrippsnetworks.com/privacy.aspx" target="_blank">Privacy & CA Privacy Rights</a></li>
|
2168
|
+
<li><a rel="gf-legal-5" href="http://www.scrippsnetworksdigital.com/foodcat/default.aspx">Advertise With Us</a></li>
|
2169
|
+
<li><a rel="gf-legal-6" href="/home/about-foodnetworkcom/index.html">About</a></li>
|
2170
|
+
<li><a rel="gf-legal-7" href="/home/questions/index.html">Help</a></li>
|
2171
|
+
<li class="last"><a rel="gf-legal-8" href="/contact-us/package/index.html">Contact Us</a></li>
|
2172
|
+
</ul>
|
2173
|
+
<p>© 2012 <a rel="gf-parent-1" href="http://www.scrippsnetworks.com">Television Food Network G.P.</a> All rights reserved.</p>
|
2174
|
+
</div>
|
2175
|
+
</div>
|
2176
|
+
</div>
|
2177
|
+
</div>
|
2178
|
+
|
2179
|
+
<script type="text/javascript">
|
2180
|
+
SNI.Food.Omniture.ClickTrack("#fn-ft", "Site Footer");
|
2181
|
+
SNI.Nielsen.trackPageView();
|
2182
|
+
</script>
|
2183
|
+
<!-- ----------------------END SITE FOOTER REGION ----------------------- -->
|
2184
|
+
|
2185
|
+
<script type="text/javascript" src="http://images.foodnetwork.com/webfood/fn20/js/s_code_remote.js"></script>
|
2186
|
+
<script type="text/javascript">s.t()</script>
|
2187
|
+
|
2188
|
+
<script type="text/javascript">
|
2189
|
+
var google_conversion_id = 1063267434;
|
2190
|
+
var google_conversion_language = "en_US";
|
2191
|
+
var google_conversion_format = "1";
|
2192
|
+
var google_conversion_color = "999999";
|
2193
|
+
if (0.04) { var google_conversion_value = 0.04; }
|
2194
|
+
var google_conversion_label = "default";
|
2195
|
+
</script>
|
2196
|
+
<script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js"></script>
|
2197
|
+
<noscript><img height="1" width="1" src="http://www.googleadservices.com/pagead/conversion/1063267434/?value=0.04&label=default&script=0"></noscript>
|
2198
|
+
|
2199
|
+
|
2200
|
+
|
2201
|
+
|
2202
|
+
<script type="text/javascript" src="http://js.revsci.net/gateway/gw.js?csid=A09802"></script>
|
2203
|
+
<script type="text/javascript" charset="utf-8">
|
2204
|
+
SNI.RSI.setvars();
|
2205
|
+
</script>
|
2206
|
+
|
2207
|
+
|
2208
|
+
|
2209
|
+
|
2210
|
+
|
2211
|
+
|
2212
|
+
<script type="text/javascript">
|
2213
|
+
SuperstitialAd(2);
|
2214
|
+
SuperstitialAd(3);
|
2215
|
+
</script>
|
2216
|
+
|
2217
|
+
|
2218
|
+
|
2219
|
+
|
2220
|
+
|
2221
|
+
|
2222
|
+
|
2223
|
+
<div id="kv-mask"></div></body>
|
2224
|
+
</html>
|
2225
|
+
|
2226
|
+
|