epilicious 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f32ec56c09ad7d4c33ebb1c49fa1f8f5635642c
4
- data.tar.gz: 65c4f1f86de92f72a89a73c5003352af56e23683
3
+ metadata.gz: 3694cbb229e0bbaeb042917cca721f320cc2586c
4
+ data.tar.gz: cd9efdee38c942fe1fde6c97105b0abbb054f0f2
5
5
  SHA512:
6
- metadata.gz: 3dc3a15792d183097116dbc83d13ff05ea9e0967f00e15b1c08a7b400f3e063c380f79364931e5f2f17fc7a7246fa5933b3eb86e7e9838f489534850953c4725
7
- data.tar.gz: 1f5ebdadbadb9138df5d10c95585c6a142b10cb9ab48489298d1596ab6e6e05a4a6d152301e2dc6d6b8769742c2fdaa8deee5518a85c0cd0d1bd2235df2ba01c
6
+ metadata.gz: a4b482f76d6d5fb638d5aa2cc5d46169bdee0d0362c4aa7badee2173dda693339a364e7913c3b2cc5689eaf5544ff5687c010d76dc75cfeadfef7fedef89b953
7
+ data.tar.gz: 36eb0420bde9ee447c23aeb4df55922f7a64785350585b3f6a87614e6773522bca889be4be022e185ebb64a2369de174a2ac69e96346a9fb5b7b3327b4533201
@@ -2,7 +2,11 @@ require "epilicious/version"
2
2
  require "epilicious/fetcher"
3
3
 
4
4
  module Epilicious
5
- def self.recipes
6
- Fetcher.new.fetch_recipes
5
+ def self.recipes(url = recipes_url)
6
+ Fetcher.new.fetch_recipes(url)
7
7
  end
8
8
  end
9
+
10
+ def recipes_url
11
+ "http://www.epicurious.com/recipesmenus/whatsnew/recipes"
12
+ end
@@ -13,7 +13,7 @@ module Epilicious
13
13
  @base_url = "http://www.epicurious.com"
14
14
  end
15
15
 
16
- def fetch_recipes(index_url = default_index_url)
16
+ def fetch_recipes(index_url)
17
17
  recipes_page = fetch_page(index_url)
18
18
  recipes_urls = parser.parse_recipes_page(recipes_page)
19
19
  recipes = recipes_urls.map do |url|
@@ -22,7 +22,7 @@ module Epilicious
22
22
  recipes
23
23
  end
24
24
 
25
- def fetch_recipe(url = default_recipe_url)
25
+ def fetch_recipe(url)
26
26
  recipe_page = fetch_page(url)
27
27
  recipe = parser.parse_recipe_page(recipe_page)
28
28
  Recipe.new(recipe)
@@ -31,16 +31,11 @@ module Epilicious
31
31
  private
32
32
 
33
33
  def fetch_page(url)
34
- Nokogiri::HTML(open(@base_url + url))
35
- end
36
-
37
-
38
- def default_index_url
39
- "/articlesguides/bestof/toprecipes/bestburgerrecipes"
40
- end
41
-
42
- def default_recipe_url
43
- "/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Grilled-Turkey-Burgers-with-Cheddar-and-Smoky-Aioli-354289"
34
+ if url =~ /http\:\/\/.*\//
35
+ Nokogiri::HTML(open(url))
36
+ else
37
+ Nokogiri::HTML(open(@base_url + url))
38
+ end
44
39
  end
45
40
 
46
41
  def parser
@@ -2,7 +2,7 @@ module Epilicious
2
2
  class Parser
3
3
 
4
4
  def parse_recipes_page(page)
5
- page.css('#artInner .recipe_result_right a').map {|link| link ['href'] }
5
+ page.css('.recipe_result_right a').map {|link| link ['href'] }
6
6
  end
7
7
 
8
8
  def parse_recipe_page(page)
@@ -1,3 +1,3 @@
1
1
  module Epilicious
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -4,7 +4,7 @@ describe Epilicious::Fetcher do
4
4
  let(:fetcher) { Epilicious::Fetcher.new }
5
5
 
6
6
  context '#fetch_recipes' do
7
- let(:recipes) { fetcher.fetch_recipes }
7
+ let(:recipes) { fetcher.fetch_recipes(recipes_url) }
8
8
 
9
9
  it 'should return a list of recipes' do
10
10
  recipes.length.must_equal 15
@@ -13,15 +13,15 @@ describe Epilicious::Fetcher do
13
13
  end
14
14
 
15
15
  context '#fetch_recipe' do
16
- let(:recipe) { fetcher.fetch_recipe }
16
+ let(:recipe) { fetcher.fetch_recipe(recipe_url)}
17
+
17
18
  it' should return a recipe' do
18
19
  recipe.must_be_instance_of Epilicious::Recipe
19
20
  end
20
21
  end
21
22
 
22
23
  context 'private methods' do
23
- let(:url) { "/articlesguides/bestof/toprecipes/bestburgerrecipes" }
24
- let(:recipes_page) { fetcher.send(:fetch_page, url) }
24
+ let(:recipes_page) { fetcher.send(:fetch_page, recipes_url) }
25
25
 
26
26
  context '#fetch_page' do
27
27
  it 'should return a nokogiri document' do
@@ -30,3 +30,11 @@ describe Epilicious::Fetcher do
30
30
  end
31
31
  end
32
32
  end
33
+
34
+ def recipes_url
35
+ "/articlesguides/bestof/toprecipes/bestburgerrecipes"
36
+ end
37
+
38
+ def recipe_url
39
+ "/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Grilled-Turkey-Burgers-with-Cheddar-and-Smoky-Aioli-354289"
40
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: epilicious
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Hein Hoogstad
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-18 00:00:00.000000000 Z
11
+ date: 2013-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -112,8 +112,6 @@ files:
112
112
  - lib/epilicious/parser.rb
113
113
  - lib/epilicious/recipe.rb
114
114
  - lib/epilicious/version.rb
115
- - recipes_page.html
116
- - recipes_page.xml
117
115
  - test/epilicious_test.rb
118
116
  - test/fetcher_test.rb
119
117
  - test/fixtures/recipes_page.html
@@ -139,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
137
  version: '0'
140
138
  requirements: []
141
139
  rubyforge_project:
142
- rubygems_version: 2.0.3
140
+ rubygems_version: 2.0.9
143
141
  signing_key:
144
142
  specification_version: 4
145
143
  summary: a gem to parse recipes from epicurious
@@ -1,2690 +0,0 @@
1
- <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
2
- <!DOCTYPE HTML>
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US" xmlns:fb="http://ogp.me/ns/fb#" itemscope="" itemtype="http://schema.org/">
4
- <head>
5
- <!-- MOBIFY - DO NOT ALTER -->
6
- <script type="text/javascript"><![CDATA[/*<![CDATA[*/(function(a){function b(a,b){if(+a)return~a||(d.cookie=h+"=; path=/");j=d.createElement(e),k=d.getElementsByTagName(e)[0],j.src=a,b&&(j.onload=j.onerror=b),k.parentNode.insertBefore(j,k)}function c(){n.api||b(l.shift()||-1,c)}if(this.Mobify)return;var d=document,e="script",f="mobify",g="."+f+".com/",h=f+"-path",i=g+"un"+f+".js",j,k,l=[!1,1],m,n=this.Mobify={points:[+(new Date)],tagVersion:[6,1],ajs:"//a.mobify.com/epicurious/a.js"},o=/((; )|#|&|^)mobify-path=([^&;]*)/g.exec(location.hash+"; "+d.cookie);o?(m=o[3])&&!+(m=o[2]&&sessionStorage[h]||m)&&(l=[!0,"//preview"+g+escape(m)]):(l=a()||l,l[0]&&l.push("//cdn"+i,"//files01"+i)),l.shift()?(d.write('<plaintext style="display:none;">'),setTimeout(c)):b(l[0])})(function(){if(/ip(hone|od)|android.*(mobile)|(mobile).*firefox|blackberry.*applewebkit|bb1\d.*mobile/i.test(navigator.userAgent)){return[1,"//cdn.mobify.com/sites/epicurious/production/mobify.js"]}return[0,Mobify.ajs]})/*]]]]><![CDATA[>*/]]></script>
7
- <!-- END MOBIFY -->
8
- <title>
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
- The Best Burger Recipes
19
- | Epicurious.com</title>
20
- <meta itemprop="name" content="&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;The Best Burger Recipes&#10; | Epicurious.com"/>
21
- <meta property="og:title" content="&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;The Best Burger Recipes&#10; | Epicurious.com"/>
22
- <link rel="canonical" href="http://www.epicurious.com/articlesguides/bestof/toprecipes/bestburgerrecipes"/>
23
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
24
- <meta http-equiv="PRAGMA" content="NO-CACHE"/>
25
- <meta http-equiv="Content-Language" content="en-us"/>
26
- <meta name="MSSmartTagsPreventParsing" content="true"/>
27
- <meta name="author" content="CondeNet"/>
28
- <meta name="Copyright" content="Copyright (c) 2012 CondeNet"/>
29
- <meta name="p:domain_verify" content="9c2002da922784afad64b638161c75f7"/>
30
- <meta property="og:type" content="food"/>
31
- <meta property="og:url" content="http://www.epicurious.com/articlesguides/bestof/toprecipes/bestburgerrecipes"/>
32
- <link rel="publisher" href="https://plus.google.com/106968200752753566855"/>
33
- <meta property="og:image" content="http://www.epicurious.com/rd_images/global_images/epicurious-facebook.png"/>
34
- <meta property="og:site_name" content="Epicurious"/>
35
- <meta property="fb:admins" content="648235154,789168297,688620285,727538926,722582662"/>
36
- <meta property="fb:page_id" content="12770210203"/>
37
- <link rel="stylesheet" type="text/css" media="screen" href="/styles/global/header.css"/>
38
- <link rel="stylesheet" type="text/css" media="screen" href="/styles/main.css"/>
39
- <link rel="stylesheet" type="text/css" media="screen" href="/styles/secondary.css"/>
40
- <link rel="stylesheet" type="text/css" media="screen" href="/styles/articlesguides/articlesguides.css"/>
41
- <link rel="stylesheet" href="/styles/articles/general.css" type="text/css" media="screen"/>
42
- <link rel="stylesheet" href="/styles/menus/menu_detail.css" type="text/css" media="screen"/>
43
- <link rel="stylesheet" type="text/css" media="screen" href="/styles/global/footer.css"/>
44
- <link rel="stylesheet" type="text/css" media="print" href="/styles/print.css"/>
45
- <link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon"/>
46
- <script type="text/javascript"><![CDATA[var documentQueryString=window.location.search.replace(/\?/,""); ]]></script>
47
- <script type="text/javascript" src="/js/cn-fe-common/LAB.min.js"/>
48
- <script type="text/javascript" src="/js/cn-fe-stats/mbox.js"/>
49
- <script type="text/javascript" src="/javascript/jquery-1.7.min.js?v=3.13.0"/>
50
- <script type="text/javascript" src="/javascript/jquery.jcarousel.min.js?v=3.13.0"/>
51
- <script type="text/javascript" src="/javascript/jquery.cookie.js?v=3.13.0"/>
52
- <script type="text/javascript" src="/js/cn-fe-common/cn.js"/>
53
- <script type="text/javascript" src="/javascript/global/libs/underscore-min.js?v=3.13.0"/>
54
- <script type="text/javascript" src="/javascript/global/libs/backbone.js?v=3.13.0"/>
55
- <script type="text/javascript" src="/javascript/global/user/cn.lightreg.js?v=3.13.0"/>
56
- <script type="text/javascript" src="/js/cn-fe-ads/cn.dart.js"/>
57
- <script type="text/javascript"><![CDATA[
58
- CN.site.init({
59
- code: 'EPI',
60
- title: 'Epicurious',
61
- name: 'epicurious.com',
62
- userServiceKey: 'NtibqP3y1qSJM/Gsy3blJgNWt/o=',
63
- env : 'PROD'
64
-
65
- });
66
- CN.config.set({
67
- // Epi does not have an SSL Certificate so do not set this to true
68
- isiFrame : false
69
- });
70
- ]]></script>
71
- <script type="text/javascript" src="/js/cn-fe-ads/cn.ad.modifiers.js"/>
72
- <script type="text/javascript" src="/js/cn-fe-ads/cn.ad.lotame.js"/>
73
- <script type="text/javascript" src="/js/cn-fe-ads/cn.ad.yieldex.js"/>
74
- <script type="text/javascript" src="/js/cn-fe-ads/cn.ad.aam.js"/>
75
- <script type="text/javascript" src="/rd_scripts/main.js"/>
76
- <script type="text/javascript" src="/javascript/global/main.js?v=3.13.0"/>
77
- <script type="text/javascript" src="/scripts/recipeAdUtils.js"/>
78
- <script type="text/javascript" src="/rd_scripts/ecom/ecomfw.min.js"/>
79
- <script type="text/javascript" src="/rd_scripts/ecom/epi_ecom.js"/>
80
- <script type="text/javascript"><![CDATA[
81
- window._ghearst_vars = (function() {
82
- var
83
- metaKeyWords = (function(){
84
- var
85
- i = 0,
86
- metaKeywordContent = '',
87
- nameAttribute = null,
88
- metaCollection = document.getElementsByTagName('meta');
89
-
90
- for (i = 0; i < metaCollection.length; i++) {
91
- nameAttribute = metaCollection[i].name.search(/keywords/);
92
- if (nameAttribute!= -1) {
93
- metaKeywordContent = metaCollection[i].content;
94
- metaKeywordContent = metaKeywordContent.replace(/ /g,''); // to replace space
95
- }
96
- }
97
- return encodeURIComponent(metaKeywordContent);
98
- })();
99
-
100
- if( (navigator.userAgent.match(/iPad/i) !== null) && (CN.cookie.get('ipadTakeover') !== 'true') ){
101
- return {
102
- 'ams_ads_script_src': 'http://subscribe.epicurious.com/ams/page-ads.js?ad_category_prefix=WEB-INF&browser_path=%2FWEB-INF%2Finterface%2Ftemplates%2Ftemplate_a.jsp&cat_prefixes=%2CWEB-INF%2Cinterface%2Ctemplates%2Ctemplate_a.jsp&keywords='+metaKeyWords+'&position_list=AMS_EPI_GLOBAL_HEADER_SUBSCRIBELINK%2CAMS_EPI_GLOBAL_NAVBAR,AMS_EPI_GLOBAL_IPAD_TAKEOVER&site_prefix=epicurious&subdomain=www&url_name=template_a'
103
- }
104
- } else {
105
- return {
106
- 'ams_ads_script_src': 'http://subscribe.epicurious.com/ams/page-ads.js?ad_category_prefix=WEB-INF&browser_path=%2FWEB-INF%2Finterface%2Ftemplates%2Ftemplate_a.jsp&cat_prefixes=%2CWEB-INF%2Cinterface%2Ctemplates%2Ctemplate_a.jsp&keywords='+metaKeyWords+'&position_list=AMS_EPI_GLOBAL_HEADER_SUBSCRIBELINK%2CAMS_EPI_GLOBAL_NAVBAR&site_prefix=epicurious&subdomain=www&url_name=template_a'
107
- }
108
- };
109
- })();
110
-
111
- jQuery(document).ready(function(){
112
- CN.hearstQue.register(function(pageAds){
113
- var div;
114
- if ((typeof pageAds !== 'undefined') && (typeof pageAds.AMS_EPI_GLOBAL_IPAD_TAKEOVER !== 'undefined') && (CN.url.params('nojoy') != 1) ) {
115
- div = jQuery('<div id="ipad-takeover-wrapper"></div>');
116
- jQuery('body').append(div);
117
- div.html(pageAds.AMS_EPI_GLOBAL_IPAD_TAKEOVER.replace(/document.write\(.*\)/gi,"/*filtered by amg-magnet:document.write(...)*/"));
118
- }
119
- });
120
- });
121
- (function(){
122
- var pageadsReqURL = _ghearst_vars.ams_ads_script_src;
123
-
124
- // simulate delayed response
125
- var hangDuration = parseInt(CN.url.params('hangtest'), 10);
126
- if(!isNaN(hangDuration)) {
127
- pageadsReqURL = 'http://dev-cnee.condenastdigital.com/hangtest?ms='+hangDuration * 1000;
128
- }
129
- // request ecom server
130
- $LAB.script(pageadsReqURL)
131
- .wait(function() {
132
- CN.hearstQue.run(window.pageAds);
133
- });
134
- // display placements based on nojoy
135
- // display them unconditionally after 10 seconds
136
- jQuery(document).ready(function() {
137
- var duration = 10;
138
- if(CN.url.params('nojoy') == 1) {
139
- duration = 0;
140
- }
141
- setTimeout(function() {
142
- CNP.ecom.showAllPlacements();
143
- }, duration * 1000);
144
- });
145
- }());
146
- ]]></script>
147
- <script type="text/javascript"><![CDATA[
148
- //<!--
149
-
150
- CN.dart.init({site:'epi.dart', zone: 'ag.bestof;', kws:[ "articlesguides","articlesguides&bestof&toprecipes&bestburgerrecipes","bestof","toprecipes","bestburgerrecipes"], charmap : {}, embed: false});
151
- //-->
152
- ]]></script>
153
- <script type="text/javascript" src="/rd_scripts/popMaster.js"/>
154
- <script type="text/javascript" src="/rd_scripts/subscription.js"/>
155
- <script type="text/javascript" src="/rd_scripts/rounder2.js"/>
156
- <link rel="stylesheet" type="text/css" media="screen" href="/styles/rounder2.css"/>
157
- <script type="text/javascript" src="/rd_scripts/modules/Slider.js"/>
158
- <link rel="stylesheet" href="/styles/modules/Slider.css" type="text/css" media="screen"/>
159
- <script type="text/javascript" src="/rd_scripts/json2.js"/>
160
- <link rel="alternate" type="application/rss+xml" title="Epicurious.com: New Recipes" href="/services/rss/feeds/newrecipes.xml"/>
161
- <link rel="alternate" type="application/rss+xml" title="Epicurious.com: Latest Features" href="/services/rss/feeds/LatestFeatures.xml"/>
162
- <!-- supp: dartAd -->
163
- <meta name="description" property="og:description" content="Read The Best Burger Recipes - There's more to burgers than beef. Try our top-rated chicken, pork, lamb, seafood - and even mushroom - burgers, too &#10;"/>
164
- </head>
165
- <body id="epicuriousBody" class="articlesguides bestof">
166
-
167
- <div id="fb-root"/>
168
- <script><![CDATA[(function(d, s, id) {
169
- var js, fjs = d.getElementsByTagName(s)[0];
170
- if (d.getElementById(id)) {return;}
171
- js = d.createElement(s); js.id = id;
172
- js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
173
- fjs.parentNode.insertBefore(js, fjs);
174
- }(document, 'script', 'facebook-jssdk'));]]></script><!-- begin stats call --><script><![CDATA[
175
- var epi_stats = "";
176
- ]]></script><!-- end stats call --><div id="pageWrapper">
177
- <ul class="user-session" id="loggedin"><li id="hi-user">Hi <a href="/community/myepi/myprofile" id="sessionUserName">epicurious user</a>&#13;
178
- <ul id="user-utilities"><li><a href="/community/myepi/myprofile">my epi profile</a></li>&#13;
179
- <li><a href="/community/myepi/profile/mynetwork">network</a></li>&#13;
180
- <li><a href="/community/myepi/profile/mycomments">fridge door</a></li>&#13;
181
- <li><a href="/community/myepi/profile/submittedrecipes">activity</a></li>&#13;
182
- <li><a href="/user/preferences/">settings</a></li>&#13;
183
- </ul></li>&#13;
184
- <li id="para-recipe-box-counter"><a href="/community/myepi/myrecipebox" id="myRecipeBox">my recipe box</a></li>&#13;
185
- <li id="upload-recipe"><a href="/community/memberrecipes/submitarecipe">upload a recipe</a></li>&#13;
186
- <li id="sign-out"><a href="javascript:logout();">sign out</a></li>&#13;
187
- </ul><ul class="user-session" id="notlogged"><li><a href="/user/registration"><span>Become a member!</span></a> Save, rate, and review your favorite recipes! <span>Already a member?</span> <a href="/user/login">sign in</a></li>&#13;
188
- </ul><ul id="social-mobile"><li id="get-app"><a href="/services/mobile">Get the app</a></li> &#13;
189
- <li id="twit-follow"><iframe allowtransparency="true" frameborder="0" scrolling="no" src="//platform.twitter.com/widgets/follow_button.html?screen_name=epicurious&amp;lang=en" style="width:300px; height:20px;"/></li> &#13;
190
- <li id="fb-like"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2Fepicurious&amp;send=false&amp;layout=button_count&amp;width=84&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=lucida+grande&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:84px; height:21px;" allowtransparency="true"/></li>&#13;
191
- </ul><div id="headerSpace"/>
192
-
193
-
194
- <style><![CDATA[
195
- div#promotion_heading {
196
- background:transparent url(/images/articlesguides/holidays/backtoschool/2013-epicurious-back-to-school-no-sponsor.png) no-repeat scroll 0 0;}
197
- div#promotion_heading a.see_it_all {display:block; height:53px; margin:0 10px; width:970px; position: absolute;top: 1px; left: 1px;}
198
- div#promotion_heading .sponsor {position: absolute;top: 1px; left: 971px; width: 1px; height: 53px; padding-top: 4px; z-index:10}
199
- ]]></style><div id="promotion_heading">&#13;
200
- <div class="promotion_heading"><a href="/articlesguides/everydaycooking/family/backtoschool" title="Epicurious Back to School" class="see_it_all"/></div>&#13;
201
- </div>
202
-
203
-
204
- <span id="navspacer">�</span>
205
-
206
- <div id="pushDownAd">
207
-
208
-
209
-
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
- </div>
218
- <a id="epiAppStorePromo" class="appStorePromoHidden" href="itms://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=312101965&amp;mt=8&amp;s=143441">get the epicurious iPhone app</a>
219
- <script type="text/javascript" language="JavaScript"><![CDATA[detectPushdownAd();displayEpiAppStorePromo();]]></script><div class="contentContainer" id="primary">
220
- <img id="printer_friendly_global" src="/rd_images/printer_friendly/printer_friendly_epi_logo.gif"/><!-- back to links --><div id="backToSearchResultsText">
221
- </div>
222
-
223
-
224
-
225
- <div id="primary_content" itemscope="" itemtype="http://schema.org/Article">
226
-
227
- <a href="/articlesguides/bestof/toprecipes" id="agBreadcrumb">&#8249; Top-Rated Recipes</a>
228
-
229
-
230
-
231
- <div id="pc_extra_info"/>
232
-
233
- <div id="pc_top">
234
-
235
- <div id="pc_top1"/>
236
-
237
- <div id="pc_top2">
238
-
239
-
240
-
241
-
242
-
243
-
244
-
245
-
246
- <div id="headline">
247
-
248
-
249
- <a href="" class="clipping"/>
250
-
251
-
252
- <div id="floatingSponsorAd"/>
253
- <h1 id="H1">
254
- <span itemprop="name">
255
- The Best Burger Recipes
256
- </span>
257
- </h1>
258
-
259
-
260
-
261
-
262
- <p class="meta-info">
263
- <span class="dek">There's more to burgers than beef. Try our top-rated chicken, pork, lamb, seafood�and even mushroom�burgers, too
264
- </span><br/></p>
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
-
273
-
274
-
275
-
276
-
277
-
278
-
279
-
280
-
281
-
282
- <p class="source">
283
-
284
-
285
-
286
-
287
-
288
-
289
-
290
- </p>
291
-
292
-
293
-
294
-
295
-
296
-
297
-
298
-
299
-
300
-
301
-
302
-
303
-
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
-
315
- </div>
316
-
317
-
318
- <div class="sponsorAd">
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
-
335
-
336
-
337
-
338
-
339
-
340
-
341
-
342
-
343
-
344
-
345
-
346
-
347
-
348
-
349
-
350
-
351
-
352
- <div id="sponsorAd120x60_frame" class="displayAd displayAd120x60Js" data-cb-ad-id="sponsorAd120x60_frame"/>
353
- <script type="text/javascript"><![CDATA[
354
- //<!--
355
-
356
- CN.dart.call('sponsorAd', {sz:'120x60', kws:[], collapse: false});
357
- //-->
358
- ]]></script></div>
359
- </div>
360
- </div>
361
-
362
-
363
-
364
- <script type="text/javascript" src="/rd_scripts/article.js"/><div class="content_unit" id="articleContent">
365
- <div id="artInner" itemprop="articleBody">
366
- <style><![CDATA[#artInner li { list-style-image: url('/rd_images/global_images/bullet_blue.gif'); margin-left: 0; padding-left: 0; }
367
- ]]></style><div class="result_row first_item">
368
- <div class="recipe_result_right">
369
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Grilled-Turkey-Burgers-with-Cheddar-and-Smoky-Aioli-354289" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Grilled Turkey Burgers with Cheddar and Smoky Aioli</a>
370
- <div class="recCopy">Bon App�tit, August 2009</div>
371
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
372
- <div class="recipe_img_box">
373
- <div class="menu_img_container">
374
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Grilled-Turkey-Burgers-with-Cheddar-and-Smoky-Aioli-354289" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2009/2009_august/354289_116.jpg" alt="Grilled Turkey Burgers with Cheddar and Smoky Aioli"/></a>
375
- </div>
376
- </div>
377
- <div class="clear"/>
378
- </div>
379
-
380
- <div class="result_row">
381
- <div class="recipe_result_right">
382
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Asian-Pork-and-Mushroom-Burger-Wraps-242710" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Asian Pork and Mushroom Burger Wraps</a>
383
- <div class="recCopy">Bon App�tit, July 2008</div>
384
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
385
- <div class="recipe_img_box">
386
- <div class="menu_img_container">
387
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Asian-Pork-and-Mushroom-Burger-Wraps-242710" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2008/2008_july/242710_116.jpg" alt="Asian Pork and Mushroom Burger Wraps"/></a>
388
- </div>
389
- </div>
390
- <div class="clear"/>
391
- </div>
392
-
393
- <div class="result_row">
394
- <div class="recipe_result_right">
395
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Portobello-Burgers-with-Pesto-Provolone-and-Roasted-Peppers-353378" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Portobello Burgers with Pesto, Provolone, and Roasted Peppers</a>
396
- <div class="recCopy">Bon App�tit, June 2009</div>
397
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
398
- <div class="recipe_img_box">
399
- <div class="menu_img_container">
400
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Portobello-Burgers-with-Pesto-Provolone-and-Roasted-Peppers-353378" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2009/2009_june/353378_116.jpg" alt="Portobello Burgers with Pesto, Provolone, and Roasted Peppers"/></a>
401
- </div>
402
- </div>
403
- <div class="clear"/>
404
- </div>
405
-
406
- <div class="result_row">
407
- <div class="recipe_result_right">
408
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Andouille-and-Beef-Burgers-with-Spicy-Mayo-and-Caramelized-Onions-235323" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Andouille and Beef Burgers with Spicy Mayo and Caramelized Onions</a>
409
- <div class="recCopy">Bon App�tit, July 2006</div>
410
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
411
- <div class="recipe_img_box">
412
- <div class="menu_img_container">
413
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Andouille-and-Beef-Burgers-with-Spicy-Mayo-and-Caramelized-Onions-235323" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2006/2006_july/235323_116.jpg" alt="Andouille and Beef Burgers with Spicy Mayo and Caramelized Onions"/></a>
414
- </div>
415
- </div>
416
- <div class="clear"/>
417
- </div>
418
-
419
- <div class="result_row">
420
- <div class="recipe_result_right">
421
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Coffee-Rubbed-Cheeseburgers-with-Texas-Barbecue-Sauce-353870" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Coffee-Rubbed Cheeseburgers with Texas Barbecue Sauce</a>
422
- <div class="recCopy">Bon App�tit, July 2009</div>
423
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
424
- <div class="recipe_img_box">
425
- <div class="menu_img_container">
426
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Coffee-Rubbed-Cheeseburgers-with-Texas-Barbecue-Sauce-353870" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2009/2009_july/353870_116.jpg" alt="Coffee-Rubbed Cheeseburgers with Texas Barbecue Sauce"/></a>
427
- </div>
428
- </div>
429
- <div class="clear"/>
430
- </div>
431
-
432
- <div class="result_row">
433
- <div class="recipe_result_right">
434
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Open-Face-Crab-Burgers-with-Red-Pepper-Dressing-352591" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Open-Face Crab Burgers with Red Pepper Dressing</a>
435
- <div class="recCopy">Bon App�tit, May 2009</div>
436
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
437
- <div class="recipe_img_box">
438
- <div class="menu_img_container">
439
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Open-Face-Crab-Burgers-with-Red-Pepper-Dressing-352591" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2009/2009_may/352591_116.jpg" alt="Open-Face Crab Burgers with Red Pepper Dressing"/></a>
440
- </div>
441
- </div>
442
- <div class="clear"/>
443
- </div>
444
-
445
- <div class="result_row">
446
- <div class="recipe_result_right">
447
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Moroccan-Spiced-Lamb-Burgers-with-Beet-Red-Onion-and-Orange-Salsa-235346" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Moroccan-Spiced Lamb Burgers with Beet, Red Onion, and Orange Salsa</a>
448
- <div class="recCopy">Bon App�tit, July 2006</div>
449
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
450
- <div class="recipe_img_box">
451
- <div class="menu_img_container">
452
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Moroccan-Spiced-Lamb-Burgers-with-Beet-Red-Onion-and-Orange-Salsa-235346" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2006/2006_july/235346_116.jpg" alt="Moroccan-Spiced Lamb Burgers with Beet, Red Onion, and Orange Salsa"/></a>
453
- </div>
454
- </div>
455
- <div class="clear"/>
456
- </div>
457
-
458
- <div class="result_row">
459
- <div class="recipe_result_right">
460
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Dominican-Chimichurri-Burgers-240003" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Dominican Chimichurri Burgers</a>
461
- <div class="recCopy">Gourmet, September 2007</div>
462
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
463
- <div class="recipe_img_box">
464
- <div class="menu_img_container">
465
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Dominican-Chimichurri-Burgers-240003" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2007/2007_september/240003_116.jpg" alt="Dominican Chimichurri Burgers"/></a>
466
- </div>
467
- </div>
468
- <div class="clear"/>
469
- </div>
470
-
471
- <div class="result_row">
472
- <div class="recipe_result_right">
473
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Chicken-Parmesan-Burgers-357349" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Chicken Parmesan Burgers</a>
474
- <div class="recCopy">Bon App�tit, March 2010</div>
475
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/3_5_forks.gif"/><br/></div>
476
- <div class="recipe_img_box">
477
- <div class="menu_img_container">
478
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Chicken-Parmesan-Burgers-357349" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2010/2010_march/357349_116.jpg" alt="Chicken Parmesan Burgers"/></a>
479
- </div>
480
- </div>
481
- <div class="clear"/>
482
- </div>
483
-
484
- <div class="result_row">
485
- <div class="recipe_result_right">
486
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Greek-Burger-with-Arugula-Tomatoes-and-Feta-241487" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Greek Burger with Arugula, Tomatoes, and Feta</a>
487
- <div class="recCopy">SELF, February 2008</div>
488
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
489
- <div class="recipe_img_box">
490
- <div class="menu_img_container">
491
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Greek-Burger-with-Arugula-Tomatoes-and-Feta-241487" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2008/2008_february/241487_116.jpg" alt="Greek Burger with Arugula, Tomatoes, and Feta"/></a>
492
- </div>
493
- </div>
494
- <div class="clear"/>
495
- </div>
496
-
497
- <div class="result_row">
498
- <div class="recipe_result_right">
499
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Bison-Burgers-with-Cabernet-Onions-and-Wisconsin-Cheddar-351256" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Bison Burgers with Cabernet Onions and Wisconsin Cheddar</a>
500
- <div class="recCopy">Bon App�tit, February 2009</div>
501
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
502
- <div class="recipe_img_box">
503
- <div class="menu_img_container">
504
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Bison-Burgers-with-Cabernet-Onions-and-Wisconsin-Cheddar-351256" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2009/2009_february/351256_116.jpg" alt="Bison Burgers with Cabernet Onions and Wisconsin Cheddar"/></a>
505
- </div>
506
- </div>
507
- <div class="clear"/>
508
- </div>
509
-
510
- <div class="result_row">
511
- <div class="recipe_result_right">
512
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Mushroom-Kasha-Burgers-with-Chipotle-Mayonnaise-239295" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Mushroom Kasha Burgers with Chipotle Mayonnaise</a>
513
- <div class="recCopy">Gourmet, August 2007</div>
514
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
515
- <div class="recipe_img_box">
516
- <div class="menu_img_container">
517
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Mushroom-Kasha-Burgers-with-Chipotle-Mayonnaise-239295" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2007/2007_august/239295_116.jpg" alt="Mushroom Kasha Burgers with Chipotle Mayonnaise"/></a>
518
- </div>
519
- </div>
520
- <div class="clear"/>
521
- </div>
522
-
523
- <div class="result_row">
524
- <div class="recipe_result_right">
525
- <a href="/recipes/food/views/Salmon-Burgers-with-Lemon-and-Capers-103498" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Salmon Burgers with Lemon and Capers</a>
526
- <div class="recCopy">Bon App�tit, June 2000</div>
527
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/3_5_forks.gif"/><br/></div>
528
- <div class="recipe_img_box">
529
-
530
- </div>
531
- <div class="clear"/>
532
- </div>
533
-
534
- <div class="result_row">
535
- <div class="recipe_result_right">
536
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Aussie-Burger-242924" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Aussie Burger</a>
537
- <div class="recCopy">Gourmet, July 2008</div>
538
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
539
- <div class="recipe_img_box">
540
- <div class="menu_img_container">
541
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Aussie-Burger-242924" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2008/2008_july/242924_116.jpg" alt="Aussie Burger"/></a>
542
- </div>
543
- </div>
544
- <div class="clear"/>
545
- </div>
546
-
547
- <div class="result_row last_item">
548
- <div class="recipe_result_right">
549
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Spicy-Turkey-Burgers-109795" onclick="javascript:submitViewRecipe();" class="recipe_detail_lnk">Spicy Turkey Burgers</a>
550
- <div class="recCopy">Bon App�tit, August 2004</div>
551
- <span class="rating">User rating:</span> <img class="sr_forks" border="0" title="recipe rating" alt="recipe rating" src="/images/recipes/recipe_search/4_forks.gif"/><br/></div>
552
- <div class="recipe_img_box">
553
- <div class="menu_img_container">
554
- <a href="/articlesguides/bestof/toprecipes/bestburgerrecipes/recipes/food/views/Spicy-Turkey-Burgers-109795" onclick="javascript:submitViewRecipe();"><img align="left" height="116" width="116" src="/images/recipesmenus/2004/2004_august/109795_116.jpg" alt="Spicy Turkey Burgers"/></a>
555
- </div>
556
- </div>
557
- <div class="clear"/>
558
- </div>
559
-
560
-
561
- <br clear="all"/><div id="bestof">
562
- <div id="seemore"><a href="/articlesguides/bestof" id="seemorelnk1"><span>see more</span></a></div>
563
- <div class="moresect">
564
- <div class="moreheder">More top-rated recipes:</div>
565
- <ul><li class="moreli"><a href="/articlesguides/bestof/toprecipes/bestpizzarecipes" class="lilnk">The Best Pizza Recipes</a></li>
566
- <li class="moreli"><a href="/articlesguides/bestof/toprecipes/bestpastarecipes" class="lilnk">The Best Pasta Recipes</a></li>
567
- <li class="moreli"><a href="/articlesguides/bestof/toprecipes/bestsaladrecipes" class="lilnk">The Best Salad Recipes</a></li>
568
- </ul><div class="moreheder" style="padding-top: 20px;">See more Burgers on Epicurious:</div>
569
- <ul><li class="moreli"><a href="/articlesguides/howtocook/dishes/burgerrecipes" class="lilnk">Favorite Burger Recipes and Tips</a></li>
570
- <li class="moreli"><a href="/articlesguides/everydaycooking/tastetests/veggieburgertastetest" class="lilnk">Veggie Burger Taste Test</a></li>
571
- <li class="moreli"><a href="/articlesguides/diningtravel/restaurants/burgers_intro" class="lilnk">Best Burgers in America</a></li>
572
- <li class="moreli"><a href="/tools/searchresults?search=burgers&amp;x=0&amp;y=0" class="lilnk">All Burger Recipes on Epicurious</a> </li>
573
- </ul></div>
574
- <div class="nextsec">
575
- <div class="nextheder">Next up:</div>
576
- <a href="/articlesguides/bestof/toprecipes/bestcakerecipes"><img src="/images/articlesguides/bestof/next-cake.jpg" border="0" height="120" width="131" alt="cake" class="nextimg"/></a>
577
- <div class="topsub">TOP-RATED RECIPES:</div>
578
- <div class="foodieheder"><a href="/articlesguides/bestof/toprecipes/bestcakerecipes" class="foodieheder">Cakes</a></div>
579
- </div>
580
- </div>
581
-
582
-
583
-
584
-
585
-
586
-
587
-
588
- <div id="print-options">
589
-
590
- <a href="javascript:window.print();" id="print">print</a>
591
-
592
- </div>
593
-
594
-
595
-
596
- </div>
597
- <div class="clear"><!-- --></div>
598
-
599
-
600
-
601
-
602
-
603
-
604
-
605
-
606
-
607
-
608
-
609
-
610
-
611
-
612
-
613
-
614
-
615
-
616
-
617
- </div>
618
-
619
- <div class="clear"/>
620
- <div id="pc_bottom"/>
621
-
622
-
623
-
624
-
625
-
626
-
627
-
628
-
629
-
630
-
631
-
632
- <div id="social-toolbar">
633
- <ul><li id="stb-twitter">
634
- <div>
635
- <iframe allowtransparency="true" frameborder="0" scrolling="no" src="//platform.twitter.com/widgets/tweet_button.html?lang=en&amp;count=vertical" style="width:60px; height:62px;"/>
636
- </div>
637
- </li>
638
- <li id="stb-facebook">
639
- <div>
640
- <like send="false" layout="box_count" width="55" show_faces="false" font="lucida grande"/></div>
641
- </li>
642
- <li id="stb-googleplus">
643
- <div id="gp-container">
644
- <plusone size="tall"/><script type="text/javascript"><![CDATA[
645
- (function() {
646
- var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
647
- po.src = 'https://apis.google.com/js/plusone.js';
648
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
649
- })();
650
- ]]></script></div>
651
- </li>
652
-
653
-
654
- </ul></div>
655
-
656
-
657
-
658
-
659
- </div>
660
-
661
-
662
-
663
-
664
-
665
- <div class="adSense468x60">
666
- <script language="JavaScript"><![CDATA[<!--
667
- google_ad_client = "ca-conde-epicurious";
668
- /* Epi Recipe Text 468x60 Banner */
669
- google_ad_channel = "8584930418";
670
- google_ad_width = 468;
671
- google_ad_height = 60;
672
- google_ad_type = "text";
673
- //-->
674
- ]]></script><script language="JavaScript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"><![CDATA[
675
- ]]></script></div>
676
-
677
-
678
-
679
-
680
- </div>
681
-
682
- <div id="headerContainer" style="">
683
- <!-- /tiles/header/site_heading.html -->
684
-
685
- <div id="site_heading">
686
- <div itemscope="" itemtype="http://schema.org/Organization">
687
- <a id="site_name" itemprop="url" href="http://www.epicurious.com"><span class="seo">Epicurious, for people who love to eat</span></a>
688
- <meta itemprop="logo" content="http://www.epicurious.com/images/global/epicurious_logo.jpg"/></div>
689
- <ul id="home_magazine_nav"><li>
690
- <a id="hmn_part_recipes"><span class="seo">Parner Recipes</span></a>
691
- </li>
692
- <li>
693
- <a id="hmn_bonappetit2" href="http://www.bonappetit.com" target="_blank"><span class="seo">Bon Appetit</span></a>
694
- <ul id="hmn_ba_lnks" style="color:#eee;"><li>
695
- <div id="AMS_EPI_GLOBAL_HEADER_SUBSCRIBELINK">
696
- <a style="color: rgb(238, 238, 238); font-size: 10px;" href="https://w1.buysub.com/loc/BNA/ATGFailsafeEpi" target="_blank"><span>subscribe</span></a>
697
- <script type="text/javascript"><![CDATA[
698
- CNP.ecom.displayCmPlacement("AMS_EPI_GLOBAL_HEADER_SUBSCRIBELINK");
699
- ]]></script></div>
700
-
701
- </li>
702
- <li>���</li>
703
- <li><a href="/recipesmenus/bonappetit/recipes" target="_blank" style="color:#eee;font-size:10px;">view recipes</a></li>
704
- </ul></li>
705
-
706
- <li>
707
- <a id="hmn_gourmet2" href="http://www.gourmet.com" target="_blank"><span class="seo">Gourmet</span></a>
708
- <ul id="hmn_gmt_lnks" style="color:#eee;"><li><a href="/recipesmenus/gourmet/recipes?browseByAtt=&amp;sort=1" target="_blank" style="color:#eee;font-size:10px;">view recipes</a></li>
709
- </ul></li>
710
-
711
- </ul></div>
712
-
713
- <!-- /tiles/header/navigation_area.html -->&#13;
714
- &#13;
715
- <div id="navigation_area"> &#13;
716
- <div id="primary_navigation">&#13;
717
- <ul><li><a id="recipesandmenus" href="/recipesmenus/"><span class="seo">Recipes &amp; Menus</span></a></li> &#13;
718
- <li><a id="articlesandguides" href="/articlesguides/"><span class="seo">Articles</span></a></li>&#13;
719
- <li><a id="community_rgn" href="/community/"><span class="seo">Community &amp; MyEpi</span></a></li>&#13;
720
- <li id="pnav_video"><a href="/video"><span class="seo">Video</span></a></li>&#13;
721
- <li id="pnav_shop"><a href="http://shop.epicurious.com/?CCAID=EPPTSHTB" target="_blank"><span class="seo">Shop</span></a></li>&#13;
722
- </ul></div>&#13;
723
- &#13;
724
- <div id="primary_navigation_dropdowns">&#13;
725
- <div id="recipesandmenus_dropdown">&#13;
726
- <div class="dropdown-content">&#13;
727
- <ul><li><a href="/articlesguides/bestof/toprecipes/">top-rated recipes</a></li>&#13;
728
- <li><a href="/recipesmenus/holidays">Holidays &amp; Celebrations</a></li>&#13;
729
- <li><a href="/recipesmenus/quickeasy/recipes">Quick &amp; Easy</a></li>&#13;
730
- <li><a href="/recipesmenus/healthy/recipes">Healthy</a></li>&#13;
731
- <li><a href="/recipesmenus/seasonal/recipes">Seasonal Cooking</a></li>&#13;
732
- <li><a href="/recipesmenus/desserts">Desserts</a></li>&#13;
733
- <li><a href="/recipesmenus/global/recipes">International Cooking</a></li>&#13;
734
- <li><a href="/recipesmenus/photos">recipe slideshows</a></li>&#13;
735
- <li><a href="/recipesmenus/drinks">Drinks</a></li>&#13;
736
- <li><a href="/cookbooks">e<span style="text-transform: uppercase;">C</span>ookbooks</a></li>&#13;
737
- &#13;
738
- <li><a href="/recipesmenus/randomhouse/recipes"><span style="text-transform: uppercase;">R</span>andom<span style="text-transform: uppercase;"> H</span>ouse on epi</a></li>&#13;
739
- <li><a href="/recipesmenus/bonappetit/recipes"><span class="sub_link">Bon App�tit</span> on Epi</a></li>&#13;
740
- <li><a href="/recipesmenus/gourmet/recipes"><span class="sub_link">Gourmet</span> on Epi</a></li>&#13;
741
- <li><a href="/recipesmenus/gourmetlive/recipes"><span class="sub_link">Gourmet Live</span> on Epi</a></li>&#13;
742
- <li><a href="/recipesmenus/self/recipes"><span class="sub_link">SELF</span> on Epi</a></li>&#13;
743
- <li><a href="/recipesmenus/whatsnew/recipes">What's New</a></li>&#13;
744
- <li><a href="/recipesmenus/buzzbox/recipes">buzz box</a></li>&#13;
745
- </ul><div class="menu-feature-content">&#13;
746
- <a href="/recipesmenus/holidays/backtoschool/recipes?intcid=epi_navpromo"><img src="/images/articlesguides/holidays/backtoschool/backToSchool_RM.jpg" border="0" alt="Fuel for School"/></a>&#13;
747
- <a href="/recipesmenus/holidays/backtoschool/recipes?intcid=epi_navpromo"><h4>Fuel for School</h4></a>&#13;
748
- <p class="menu-feature-copylinks">&#13;
749
- <a href="/recipesmenus/holidays/backtoschool/recipes?intcid=epi_navpromo">Back-to-school season calls for quick lunch ideas, grab-and-go breakfasts, and easy dinners that tame the weeknight rush. Browse hundreds of recipes that'll help your family hit the ground running this fall</a>&#13;
750
- </p>&#13;
751
- <p class="menu-feature-links">&#13;
752
- <a href="/articlesguides/everydaycooking/family/backtoschool?intcid=epi_subpromo" style="line-height: 13px;">plus: more delicious ideas in our back-to-school guide</a>�<span>&#8250;</span>&#13;
753
- </p>&#13;
754
- &#13;
755
- <!-- <div class="menu-feature-ad">
756
- <span>brought to you by</span>
757
- <img src="/rd_images/header/default/placeholder-120x60.gif" alt="" />
758
- </div>
759
- --> &#13;
760
- </div> &#13;
761
- </div>&#13;
762
- <div class="dropdown-end-cap"/>&#13;
763
- </div>&#13;
764
- &#13;
765
- <div id="articlesandguides_dropdown">&#13;
766
- <div class="dropdown-content">&#13;
767
- <ul><li><a href="/articlesguides/bestof">the best of epicurious</a></li>&#13;
768
- <li><a href="/articlesguides/blogs/editor/">The Epi-Log</a></li>&#13;
769
- <li><a href="/articlesguides/holidays">Holidays &amp; Parties</a></li>&#13;
770
- <li><a href="/articlesguides/everydaycooking">Everyday Cooking</a></li>&#13;
771
- <li><a href="/articlesguides/healthy">Healthy Cooking</a></li>&#13;
772
- <li><a href="/articlesguides/seasonalcooking">Seasonal Cooking</a></li>&#13;
773
- <li><a href="/articlesguides/howtocook">How To Cook</a></li>&#13;
774
- <li><a href="/articlesguides/cuisines">Cuisines</a></li>&#13;
775
- <li><a href="/articlesguides/entertaining">Entertaining</a></li>&#13;
776
- <li><a href="/articlesguides/diningtravel">Dining &amp; Travel</a></li>&#13;
777
- <li><a href="/articlesguides/kitchenequipment">Kitchen &amp; Equipment</a></li>&#13;
778
- <li><a href="/articlesguides/chefsexperts">Chefs &amp; Experts</a></li>&#13;
779
- <li><a href="/articlesguides/drinking">Drinking</a></li>&#13;
780
- </ul><div class="menu-feature-content">&#13;
781
- <a href="/articlesguides/everydaycooking/family/backtoschool?intcid=epi_navpromo"><img src="/images/articlesguides/holidays/backtoschool/backToSchool_AG.jpg" border="0" alt="Brain Food"/></a>&#13;
782
- <a href="/articlesguides/everydaycooking/family/backtoschool?intcid=epi_navpromo"><h4>Brain Food</h4></a>&#13;
783
- <p class="menu-feature-copylinks">&#13;
784
- <a href="/articlesguides/everydaycooking/family/backtoschool?intcid=epi_navpromo">Get the school year off to a smart start with cool new lunch boxes, bentos, and containers, plus packable, lip-smackable lunch inspirations for vegetarians, student athletes, and students at nut-free schools</a>&#13;
785
- </p>&#13;
786
- <p class="menu-feature-links">&#13;
787
- <a href="/recipesmenus/holidays/backtoschool/recipes?intcid=epi_subpromo" style="line-height: 13px;">plus: hundreds of tasty recipes for busy families</a>�<span>&#8250;</span>&#13;
788
- </p>&#13;
789
- &#13;
790
- &#13;
791
- <!-- <div class="menu-feature-ad">
792
- <span>brought to you by</span>
793
- <img src="/rd_images/header/default/placeholder-120x60.gif" alt="" />
794
- </div> -->&#13;
795
- </div> &#13;
796
- </div>&#13;
797
- <div class="dropdown-end-cap"/>&#13;
798
- </div>&#13;
799
- &#13;
800
- <ul id="community_dropdown"><li><a href="http://community.epicurious.com">Community Table</a></li>&#13;
801
- <li><a href="/community/myepi/myprofile">my epi profile</a></li>&#13;
802
- <li><a href="/community/memberrecipes/submitarecipe">add your own recipes</a></li>&#13;
803
- <li><a href="/community/myepi/profile/findmembers">find members</a></li>&#13;
804
- <li><a href="/community/memberrecipes">member recipes</a></li>&#13;
805
- <li><a href="/community/forums">forums</a></li>&#13;
806
- </ul></div>&#13;
807
- &#13;
808
- <div id="primary_navigation_supplement">&#13;
809
- <ul id="recipesandmenus_supplement"><li><a href="/recipesmenus/advancedsearch">Advanced Search</a>��</li>&#13;
810
- <li><a href="/recipesmenus/browse">Browse</a></li>&#13;
811
- </ul><ul id="articlesandguides_supplement"><li><a href="http://cookingschool.epicurious.com/">epicurious cooking school</a></li>&#13;
812
- </ul><ul id="community_supplement"><li><a href="/community/myepi/myrecipebox">My Recipe Box</a>��</li>&#13;
813
- <li><a href="/community/myepi/myprofile">my profile</a></li>&#13;
814
- </ul><ul id="video-shop_supplement"><li><a id="seasonal-food-map" href="/articlesguides/seasonalcooking/farmtotable/farmtotable">seasonal food map</a></li>&#13;
815
- </ul></div> &#13;
816
- &#13;
817
- <div id="auxiliary_navigation"> &#13;
818
- <!-- EPI-48 : Add this item back when we want the promo unit --> &#13;
819
- <!-- <ul id="auxiliary_list">
820
- <li><a href="/promo/index" id="aux_promotions"><span class="seo">Promotions</span></a></li>
821
- </ul> -->&#13;
822
- &#13;
823
- <div id="global_search">&#13;
824
- <form action="/tools/searchresults" name="global_search" onsubmit="return expireSearchLnksCookies();">&#13;
825
- <input id="selected_search_section" type="hidden" value=""/><!-- input type="hidden" name="type" value="food" / --><span id="gs_dropdown" onclick="toggleDisplayById('search_section_droplist'); return false;"/>&#13;
826
- <input type="text" name="search" id="global_search_box" maxlength="100" value="search all of epicurious"/><ul id="search_section_droplist"><li><img src="/rd_images/global_images/nav/gs_dropdown_active.gif" border="0" alt="" onclick="toggleDisplayById('search_section_droplist')"/></li>&#13;
827
- <li><a id="food">food recipes</a></li>&#13;
828
- <li><a id="drinks">drink recipes</a></li>&#13;
829
- <li><a id="members">member recipes</a></li>&#13;
830
- <li><a id="all">all recipes</a></li>&#13;
831
- <!-- li><a id="menus">menus</a></li -->&#13;
832
- <li><a id="articles">articles &amp; guides</a></li>&#13;
833
- </ul><input type="image" src="/rd_images/header/global/btn_go.gif" id="submit" value="search"/></form>&#13;
834
- <script><![CDATA[initSearchDropDown()]]></script></div>&#13;
835
- &#13;
836
- <div id="magazine_nav">&#13;
837
- <ul><li><a id="bonappetit" href="http://www.bonappetit.com/" target="_blank"><span class="seo">Bon App�tit Magazine</span></a></li>&#13;
838
- <li>&#13;
839
- <div id="AMS_EPI_GLOBAL_NAVBAR"><a class="subscribe" href="https://w1.buysub.com/loc/BNA/ATGFailsafeEpi" target="_blank"/></div>&#13;
840
- <script type="text/javascript"><![CDATA[
841
- CNP.ecom.displayCmPlacement("AMS_EPI_GLOBAL_NAVBAR");
842
- ]]></script></li>&#13;
843
- <li><a class="viewbaRecipe" href="/recipesmenus/bonappetit/recipes"><span class="seo">view recipes</span></a></li>&#13;
844
- <li><a class="visit" href="http://www.bonappetit.com/" target="_blank"><span class="seo">visit site</span></a></li>&#13;
845
- </ul></div>&#13;
846
- </div>&#13;
847
- &#13;
848
- <!--secondary_clickdown_navigation: 'supernav'-->&#13;
849
- <!-- IFRAME name="supernav_iframe" id="supernav_html" src='/nav/07redesign/supernav.html' scrolling="no" frameborder="0" width="990"></IFRAME -->&#13;
850
- <!--end secondary_clickdown_navigation-->&#13;
851
- &#13;
852
- </div><!-- end navigation area --> &#13;
853
- <script type="text/javascript" language="JavaScript" src="/rd_scripts/header/epi_navigation.js"/><div id="banner_container">
854
-
855
-
856
-
857
-
858
-
859
-
860
-
861
-
862
-
863
-
864
-
865
-
866
-
867
-
868
-
869
-
870
-
871
-
872
-
873
-
874
-
875
-
876
-
877
-
878
-
879
-
880
-
881
-
882
-
883
-
884
-
885
-
886
-
887
- <div id="topBannerAd728x90_frame" class="displayAd displayAd728x90Js" data-cb-ad-id="topBannerAd728x90_frame"/>
888
- <script type="text/javascript"><![CDATA[
889
- //<!--
890
-
891
- CN.dart.call('topBannerAd', {sz:'728x90', kws:["top"], collapse: false});
892
- //-->
893
- ]]></script></div>
894
-
895
- </div>
896
-
897
-
898
- <script type="text/javascript" language="JavaScript 1.5"><![CDATA[roundContainer("primary");]]></script><div class="contentContainer" id="secondary">
899
-
900
-
901
-
902
-
903
-
904
-
905
-
906
- <div id="marketingWidgetModule">
907
-
908
- <div id="marketingWidgetModule_content">
909
- <h5 id="connect_header">Connect with epicurious</h5>
910
- <ul id="connect_links"><li><a id="recipe_box_mw" href="/community/myepi/myrecipebox/?mbid=iconstrip">Recipe Box</a></li>
911
- <li><a id="connect_epi_mw" href="/services/mobile/?mbid=iconstrip">Connect to epi</a></li>
912
- <li><a id="twitter_mw" href="http://twitter.com/#!/epicurious">Connect to twitter</a></li>
913
- <li><a id="facebook_mw" href="http://www.facebook.com/epicurious">Connect to facebook</a></li>
914
- <li><a id="gplus_mw" href="https://plus.google.com/106968200752753566855">Connect to google plus</a></li>
915
- <li><a id="pinterest_mw" href="http://pinterest.com/epicurious/">Connect to pinterest</a></li>
916
- <li><a id="the_shop_mw" href="http://shop.epicurious.com?CCAID=EPPTPHPC1BRAND">Connect to shop module</a></li>
917
- </ul><div class="clearfix">
918
- </div>
919
- <h5 id="signup_header">newsletter sign-up</h5>
920
- <div id="error_area">
921
- <div class="error" id="letter_message1">
922
- <div align="right">
923
- <img src="/images/newsletter_widget/xClose_icon.gif" border="0" class="close"/></div>
924
- <span class="thanksHead">You've got great taste!</span><br/><span class="thanksCont">Thank you for signing up to receive our<br/>newsletters.</span>
925
- <div style="height:10px;">
926
- <!-- -->
927
- </div>
928
- </div>
929
- <div class="error" id="letter_message2">
930
- <ul class="error_ul"><li class="error_icon"><img src="/images/newsletter_widget/error_icon.gif" height="0" width="0"/>ERROR:<br/>- Please enter a valid e-mail address.</li>
931
- </ul></div>
932
- <div class="error" id="letter_message3">
933
- <ul class="error_ul"><li class="error_icon"><img src="/images/newsletter_widget/error_icon.gif" height="0" width="0"/>ERROR:<br/>- Please select a newsletter preference.</li>
934
- </ul></div>
935
- </div>
936
- <form id="newslettersForm" name="newslettersForm">
937
- <input type="text" name="email" placeholder="enter your email address" id="newsletter_email" maxlength="50"/><input type="submit" id="btnSubmit" border="0" value=""/><!-- Newsletter options--><div id="newsletter_container">
938
-
939
- <h6 id="news_letter_header">Epicurious Newsletters</h6>
940
- <ul id="newsletter_content"><li><input type="checkbox" tabindex="30" name="newsletter" class="checkBox" value="5" checked="checked"/><a href="/services/newsletters" style="text-decoration:none;"><span class="section">recipe flash:</span></a> get a weekly taste of our favorite new recipes plus the inside scoop on the food and wine world. <a class="orlinkgen" href="javascript:popWindow('/images/newsletter/slideshow/flash.jpg','flash','no','no',495,543)">view a sample</a></li>
941
- <li><input type="checkbox" tabindex="31" name="newsletter" class="checkBox" value="5117" checked="checked"/><a href="/services/newsletters" style="text-decoration:none;"><span class="section">recipe of the day:</span></a> get an irresistible recipe delivered to your inbox every day. <a class="orlinkgen" href="javascript:popWindow('/images/newsletter/slideshow/rotd.jpg','rotd','no','no',495,543)">view a sample</a></li>
942
- <li><input type="checkbox" tabindex="32" name="newsletter" class="checkBox" value="23" checked="checked"/><a href="/services/newsletters" style="text-decoration:none;"><span class="section">the daily sip&#8482;:</span></a> receive a daily newsletter from our partner, Bottlenotes, and uncork the world of wine with tips on regions, pairings, gadgets, and more. <a class="orlinkgen" href="javascript:popWindow('/images/newsletter/slideshow/the_daily_sip.jpg','dailysip','no','no',495,543)">view a sample</a></li>
943
- <li><input type="checkbox" tabindex="33" name="newsletter" class="checkBox" value="5111" checked="checked"/><a href="/services/newsletters" style="text-decoration:none;"><span class="section">epicurious shop deals:</span></a> Get weekly offers from the ultimate cook's shop. Plus, first-time subscribers receive a coupon for 10% off! <a class="orlinkgen" href="javascript:popWindow('/images/newsletter/slideshow/shop.jpg','shop','no','no',495,543)">view a sample</a></li>
944
- </ul><a href="/services/newsletters" id="see_all">See All<span class="arrow_right"/></a>
945
-
946
- <div class="newsletter_bottom">
947
- <p id="widgetLegalNote">
948
- I understand and agree that registration on or use of this site constitutes agreement to its <a href="/services/legal/useragreement">User Agreement</a>, and <a href="/services/legal/privacy">Privacy Policy</a>.
949
- </p>
950
- </div>
951
- </div>
952
- </form>
953
- </div>
954
- </div>
955
-
956
-
957
-
958
-
959
- <div class="module">
960
- <div class="widget" id="ad_widget">
961
- <h2>Advertising</h2>
962
- <div id="ads-a">
963
-
964
-
965
-
966
-
967
-
968
-
969
-
970
-
971
-
972
-
973
-
974
-
975
-
976
-
977
-
978
-
979
-
980
-
981
-
982
-
983
-
984
-
985
-
986
-
987
-
988
-
989
-
990
- <div id="ad1923534792_300x250_frame" class="displayAd displayAd300x250Js" data-cb-ad-id="ad1923534792_300x250_frame"/>
991
- <script type="text/javascript"><![CDATA[
992
- //<!--
993
-
994
- CN.dart.call('ad1923534792_', {sz:'300x250', kws:["top"], collapse: false});
995
- //-->
996
- ]]></script></div>
997
- </div>
998
- </div>
999
-
1000
-
1001
- <!-- Subscription - /tiles/rightrail/subscription.html -->&#13;
1002
- &#13;
1003
- <div id="ba_marketing_offer" class="module">&#13;
1004
- <a href="http://ad.doubleclick.net/clk;275107876;100781008;d;pc=[TPAS_ID]" target="_blank"><img src="/rd_images/modules/secondary/subscriptions/CS_electrolux_iReg.jpg" width="300" height="100" border="0" alt="Electrolux"/><img src="http://ad.doubleclick.net/ad/N3340.epicurious.com/B7792428.39;sz=1x1;pc=[TPAS_ID];ord=%n?" border="0" width="1" height="1" alt="Advertisement"/></a>&#13;
1005
- </div>&#13;
1006
- &#13;
1007
- <!-- div id="ba_sub_offer" class="module">
1008
- <div id="AMS_EPI_HOMEPAGE_RIGHTRAIL_A">
1009
- </div>
1010
- <script type="text/javascript">
1011
- CNP.ecom.displayCmPlacement("AMS_EPI_HOMEPAGE_RIGHTRAIL_A");
1012
- </script>
1013
- </div -->&#13;
1014
- &#13;
1015
-
1016
-
1017
-
1018
- <div id="product-widget" class="modular content_unit dropshadowed">
1019
- <a href="http://shop.epicurious.com" id="product-widget-see-store" target="_blank"><h2>popular now</h2></a>
1020
-
1021
- <div id="product-widget-carousel" class="jcarousel-skin-epi">
1022
- <ul/></div>
1023
- </div>
1024
-
1025
-
1026
-
1027
-
1028
-
1029
- <div id="poll_booth_module" class="modular content_unit dropshadowed hslider">
1030
-
1031
- <img class="poll_hed" src="/rd_images/poll/epi_poll_hed.jpg"/><iframe id="poll_booth" height="200" frameborder="0" scrolling="no" src="/services/poll-cache/rightrailpoll"/>
1032
-
1033
- <div class="poll_ad">
1034
-
1035
-
1036
-
1037
-
1038
-
1039
-
1040
-
1041
-
1042
-
1043
-
1044
-
1045
-
1046
-
1047
-
1048
-
1049
-
1050
-
1051
-
1052
-
1053
-
1054
-
1055
-
1056
-
1057
-
1058
-
1059
-
1060
-
1061
- <div id="pollBooth165x31_frame" class="displayAd displayAd165x31Js" data-cb-ad-id="pollBooth165x31_frame"/>
1062
- <script type="text/javascript"><![CDATA[
1063
- //<!--
1064
-
1065
- CN.dart.call('pollBooth', {sz:'165x31', kws:[], collapse: false});
1066
- //-->
1067
- ]]></script></div>
1068
- </div>
1069
-
1070
-
1071
-
1072
-
1073
-
1074
-
1075
-
1076
-
1077
-
1078
-
1079
-
1080
-
1081
-
1082
-
1083
-
1084
-
1085
-
1086
-
1087
-
1088
-
1089
-
1090
- <div class="scrolled three tabbed module" id="related_content_module">
1091
- <h2>Related Content</h2>
1092
-
1093
- <ul class="tabnav"><li><a id="rcm_recipetab" onfocus="blur(this)" href="javascript: void(0)" class="active"/>Recipes</li>
1094
- <li><a id="rcm_menutab" onfocus="blur(this)" href="javascript: void(0)">Menus</a></li>
1095
- <li><a id="rcm_articletab" onfocus="blur(this)" href="javascript: void(0)"/>Articles</li>
1096
- </ul><div class="module_content" id="rcm_content">
1097
- <button class="scroll_up" id="rc_scroll_up" onfocus="blur(this)"/>
1098
-
1099
-
1100
-
1101
- <div id="rcm_recipe_content">
1102
-
1103
-
1104
-
1105
-
1106
-
1107
-
1108
- <div class="mc_row">
1109
-
1110
-
1111
-
1112
-
1113
- <div class="mc_row_content">
1114
- <p>
1115
-
1116
- <span class="rcm_count">1.</span>
1117
-
1118
-
1119
-
1120
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/1986">Grilled Sausages with Chunky Tomato Porcini Sauce</a>
1121
-
1122
-
1123
-
1124
-
1125
- <span class="rcm_source">Bon App�tit,�June 1994</span>
1126
-
1127
-
1128
-
1129
-
1130
-
1131
-
1132
- <!-- given rating, returns proper ratingImage -->
1133
-
1134
-
1135
-
1136
-
1137
-
1138
-
1139
-
1140
-
1141
-
1142
-
1143
-
1144
-
1145
-
1146
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/3_forks.gif"/></p>
1147
- </div>
1148
- <div class="clear"/>
1149
- </div>
1150
-
1151
- <div class="mc_row">
1152
-
1153
-
1154
-
1155
-
1156
- <div class="mc_row_content">
1157
- <p>
1158
-
1159
- <span class="rcm_count">2.</span>
1160
-
1161
-
1162
-
1163
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/236025">Grilled Pork Chops with Clams and Chorizo</a>
1164
-
1165
-
1166
-
1167
-
1168
- <span class="rcm_source">Gourmet,�October 2006</span>
1169
-
1170
-
1171
-
1172
-
1173
-
1174
-
1175
- <!-- given rating, returns proper ratingImage -->
1176
-
1177
-
1178
-
1179
-
1180
-
1181
-
1182
-
1183
-
1184
-
1185
-
1186
-
1187
-
1188
-
1189
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/3_forks.gif"/></p>
1190
- </div>
1191
- <div class="clear"/>
1192
- </div>
1193
-
1194
- <div class="mc_row">
1195
-
1196
-
1197
-
1198
- <a href="/recipes/food/views/352990" class="rcm_linkable_image"><img src="/images/recipesmenus/2009/2009_may/352990_46.jpg" alt="Salmon and Corn Chowder"/></a>
1199
-
1200
-
1201
- <div class="mc_row_content mcrc_img">
1202
- <p>
1203
-
1204
- <span class="rcm_count">3.</span>
1205
-
1206
-
1207
-
1208
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/352990">Salmon and Corn Chowder</a>
1209
-
1210
-
1211
-
1212
-
1213
- <span class="rcm_source"><em>Wood-Fired Cooking</em>,�May 2009</span>
1214
-
1215
-
1216
-
1217
-
1218
-
1219
-
1220
- <!-- given rating, returns proper ratingImage -->
1221
-
1222
-
1223
-
1224
-
1225
-
1226
-
1227
-
1228
-
1229
-
1230
-
1231
-
1232
-
1233
-
1234
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/3_5_forks.gif"/></p>
1235
- </div>
1236
- <div class="clear"/>
1237
- </div>
1238
-
1239
- <div class="mc_row">
1240
-
1241
-
1242
-
1243
- <a href="/recipes/food/views/102279" class="rcm_linkable_image"><img src="/images/recipesmenus/1999/1999_september/102279_46.jpg" alt="Chicken and Sausage Maque Choux"/></a>
1244
-
1245
-
1246
- <div class="mc_row_content mcrc_img">
1247
- <p>
1248
-
1249
- <span class="rcm_count">4.</span>
1250
-
1251
-
1252
-
1253
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/102279">Chicken and Sausage Maque Choux</a>
1254
-
1255
-
1256
-
1257
-
1258
- <span class="rcm_source">Gourmet,�September 1999</span>
1259
-
1260
-
1261
-
1262
-
1263
-
1264
-
1265
- <!-- given rating, returns proper ratingImage -->
1266
-
1267
-
1268
-
1269
-
1270
-
1271
-
1272
-
1273
-
1274
-
1275
-
1276
-
1277
-
1278
-
1279
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/3_5_forks.gif"/></p>
1280
- </div>
1281
- <div class="clear"/>
1282
- </div>
1283
-
1284
- <div class="mc_row">
1285
-
1286
-
1287
-
1288
- <a href="/recipes/food/views/240262" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_october/240262_46.jpg" alt="Clay-Pot Miso Chicken"/></a>
1289
-
1290
-
1291
- <div class="mc_row_content mcrc_img">
1292
- <p>
1293
-
1294
- <span class="rcm_count">5.</span>
1295
-
1296
-
1297
-
1298
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/240262">Clay-Pot Miso Chicken</a>
1299
-
1300
-
1301
-
1302
-
1303
- <span class="rcm_source">Gourmet,�October 2007</span>
1304
-
1305
-
1306
-
1307
-
1308
-
1309
-
1310
- <!-- given rating, returns proper ratingImage -->
1311
-
1312
-
1313
-
1314
-
1315
-
1316
-
1317
-
1318
-
1319
-
1320
-
1321
-
1322
-
1323
-
1324
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/3_5_forks.gif"/></p>
1325
- </div>
1326
- <div class="clear"/>
1327
- </div>
1328
-
1329
- <div class="mc_row">
1330
-
1331
-
1332
-
1333
- <a href="/recipes/food/views/240272" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_october/240272_46.jpg" alt="Hake with Wild Mushrooms"/></a>
1334
-
1335
-
1336
- <div class="mc_row_content mcrc_img">
1337
- <p>
1338
-
1339
- <span class="rcm_count">6.</span>
1340
-
1341
-
1342
-
1343
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/240272">Hake with Wild Mushrooms</a>
1344
-
1345
-
1346
-
1347
-
1348
- <span class="rcm_source">Gourmet,�October 2007</span>
1349
-
1350
-
1351
-
1352
-
1353
-
1354
-
1355
- <!-- given rating, returns proper ratingImage -->
1356
-
1357
-
1358
-
1359
-
1360
-
1361
-
1362
-
1363
-
1364
-
1365
-
1366
-
1367
-
1368
-
1369
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/3_5_forks.gif"/></p>
1370
- </div>
1371
- <div class="clear"/>
1372
- </div>
1373
-
1374
- <div class="mc_row">
1375
-
1376
-
1377
-
1378
- <a href="/recipes/food/views/240224" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_october/240224_46.jpg" alt="Shepherd's Pie"/></a>
1379
-
1380
-
1381
- <div class="mc_row_content mcrc_img">
1382
- <p>
1383
-
1384
- <span class="rcm_count">7.</span>
1385
-
1386
-
1387
-
1388
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/240224">Shepherd's Pie</a>
1389
-
1390
-
1391
-
1392
-
1393
- <span class="rcm_source">Cookie,�October 2007</span>
1394
-
1395
-
1396
-
1397
-
1398
-
1399
-
1400
- <!-- given rating, returns proper ratingImage -->
1401
-
1402
-
1403
-
1404
-
1405
-
1406
-
1407
-
1408
-
1409
-
1410
-
1411
-
1412
-
1413
-
1414
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/4_forks.gif"/></p>
1415
- </div>
1416
- <div class="clear"/>
1417
- </div>
1418
-
1419
- <div class="mc_row">
1420
-
1421
-
1422
-
1423
- <a href="/recipes/food/views/355969" class="rcm_linkable_image"><img src="/images/recipesmenus/2009/2009_june/355969_46.jpg" alt="Cuban-Style Burgers with Grilled Ham &amp; Cheese"/></a>
1424
-
1425
-
1426
- <div class="mc_row_content mcrc_img">
1427
- <p>
1428
-
1429
- <span class="rcm_count">8.</span>
1430
-
1431
-
1432
-
1433
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/355969">Cuban-Style Burgers with Grilled Ham &amp; Cheese</a>
1434
-
1435
-
1436
-
1437
-
1438
- <span class="rcm_source"><em>Build A Better Burger</em>,�June 2009</span>
1439
-
1440
-
1441
-
1442
-
1443
-
1444
-
1445
- <!-- given rating, returns proper ratingImage -->
1446
-
1447
-
1448
-
1449
-
1450
-
1451
-
1452
-
1453
-
1454
-
1455
-
1456
-
1457
-
1458
-
1459
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/4_forks.gif"/></p>
1460
- </div>
1461
- <div class="clear"/>
1462
- </div>
1463
-
1464
- <div class="mc_row">
1465
-
1466
-
1467
-
1468
- <a href="/recipes/food/views/363469" class="rcm_linkable_image"><img src="/images/recipesmenus/2010/2010_may/363469_46.jpg" alt="Spring Lamb with Grilled Baby Artichokes &#8211; Mr. Bean"/></a>
1469
-
1470
-
1471
- <div class="mc_row_content mcrc_img">
1472
- <p>
1473
-
1474
- <span class="rcm_count">9.</span>
1475
-
1476
-
1477
-
1478
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/363469">Spring Lamb with Grilled Baby Artichokes &#8211;...</a>
1479
-
1480
-
1481
-
1482
-
1483
- <span class="rcm_source"><em>Mixt Salads</em>,�May 2010</span>
1484
-
1485
-
1486
-
1487
-
1488
-
1489
- </p>
1490
- </div>
1491
- <div class="clear"/>
1492
- </div>
1493
-
1494
- <div class="mc_row">
1495
-
1496
-
1497
-
1498
- <a href="/recipes/food/views/355970" class="rcm_linkable_image"><img src="/images/recipesmenus/2009/2009_june/355970_46.jpg" alt="Napa Valley Basil-Smoked Burgers"/></a>
1499
-
1500
-
1501
- <div class="mc_row_content mcrc_img">
1502
- <p>
1503
-
1504
- <span class="rcm_count">10.</span>
1505
-
1506
-
1507
-
1508
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/355970">Napa Valley Basil-Smoked Burgers</a>
1509
-
1510
-
1511
-
1512
-
1513
- <span class="rcm_source"><em>Build a Better Burger</em>,�June 2009</span>
1514
-
1515
-
1516
-
1517
-
1518
-
1519
-
1520
- <!-- given rating, returns proper ratingImage -->
1521
-
1522
-
1523
-
1524
-
1525
-
1526
-
1527
-
1528
-
1529
-
1530
-
1531
-
1532
-
1533
-
1534
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/4_forks.gif"/></p>
1535
- </div>
1536
- <div class="clear"/>
1537
- </div>
1538
-
1539
- <div class="mc_row">
1540
-
1541
-
1542
-
1543
- <a href="/recipes/food/views/236774" class="rcm_linkable_image"><img src="/images/recipesmenus/2006/2006_december/236774_46.jpg" alt="Shrimp, Chicken, and Andouille Gumbo"/></a>
1544
-
1545
-
1546
- <div class="mc_row_content mcrc_img">
1547
- <p>
1548
-
1549
- <span class="rcm_count">11.</span>
1550
-
1551
-
1552
-
1553
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/236774">Shrimp, Chicken, and Andouille Gumbo</a>
1554
-
1555
-
1556
-
1557
-
1558
- <span class="rcm_source">Bon App�tit,�December 2006</span>
1559
-
1560
-
1561
-
1562
-
1563
-
1564
-
1565
- <!-- given rating, returns proper ratingImage -->
1566
-
1567
-
1568
-
1569
-
1570
-
1571
-
1572
-
1573
-
1574
-
1575
-
1576
-
1577
-
1578
-
1579
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/3_5_forks.gif"/></p>
1580
- </div>
1581
- <div class="clear"/>
1582
- </div>
1583
-
1584
- <div class="last mc_row">
1585
-
1586
-
1587
-
1588
- <a href="/recipes/food/views/240266" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_october/240266_46.jpg" alt="Sophisto Joes"/></a>
1589
-
1590
-
1591
- <div class="mc_row_content mcrc_img">
1592
- <p>
1593
-
1594
- <span class="rcm_count">12.</span>
1595
-
1596
-
1597
-
1598
- <a class="rcm_title rcm_recipe_title" href="/recipes/food/views/240266">Sophisto Joes</a>
1599
-
1600
-
1601
-
1602
-
1603
- <span class="rcm_source">Gourmet,�October 2007</span>
1604
-
1605
-
1606
-
1607
-
1608
-
1609
-
1610
- <!-- given rating, returns proper ratingImage -->
1611
-
1612
-
1613
-
1614
-
1615
-
1616
-
1617
-
1618
-
1619
-
1620
-
1621
-
1622
-
1623
-
1624
- <img class="rcm_fork_image" src="/images/recipes/recipe_search/3_5_forks.gif"/></p>
1625
- </div>
1626
- <div class="clear"/>
1627
- </div>
1628
-
1629
-
1630
- </div>
1631
-
1632
-
1633
-
1634
-
1635
- <div id="rcm_menu_content">
1636
-
1637
-
1638
-
1639
-
1640
-
1641
-
1642
- <div class="mc_row">
1643
-
1644
-
1645
-
1646
-
1647
-
1648
-
1649
-
1650
- <a href="/recipes/menu/views/10mm_feb07" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_february/237210_46.jpg"/></a>
1651
-
1652
-
1653
-
1654
-
1655
- <div class="mc_row_content mcrc_img">
1656
- <p>
1657
-
1658
- <span class="rcm_count">1.</span>
1659
-
1660
-
1661
- <a class="rcm_title" href="/recipes/menu/views/10mm_feb07">Fast, Warm Food for Winter</a>
1662
-
1663
-
1664
-
1665
-
1666
-
1667
- <span class="rcm_source">Gourmet</span>
1668
-
1669
-
1670
-
1671
- </p>
1672
- </div>
1673
- <div class="clear"/>
1674
- </div>
1675
-
1676
- <div class="mc_row">
1677
-
1678
-
1679
-
1680
-
1681
-
1682
-
1683
-
1684
- <a href="/recipes/menu/views/get_it_ripe" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_july/238934_46.jpg"/></a>
1685
-
1686
-
1687
-
1688
-
1689
- <div class="mc_row_content mcrc_img">
1690
- <p>
1691
-
1692
- <span class="rcm_count">2.</span>
1693
-
1694
-
1695
- <a class="rcm_title" href="/recipes/menu/views/get_it_ripe">Get it Ripe</a>
1696
-
1697
-
1698
-
1699
-
1700
-
1701
- <span class="rcm_source">Gourmet</span>
1702
-
1703
-
1704
-
1705
- </p>
1706
- </div>
1707
- <div class="clear"/>
1708
- </div>
1709
-
1710
- <div class="mc_row">
1711
-
1712
-
1713
-
1714
-
1715
-
1716
-
1717
-
1718
- <a href="/recipes/menu/views/jun07" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_june/238666_46.jpg"/></a>
1719
-
1720
-
1721
-
1722
-
1723
- <div class="mc_row_content mcrc_img">
1724
- <p>
1725
-
1726
- <span class="rcm_count">3.</span>
1727
-
1728
-
1729
- <a class="rcm_title" href="/recipes/menu/views/jun07">Fast, Fresh Flavors for Summer</a>
1730
-
1731
-
1732
-
1733
-
1734
-
1735
- <span class="rcm_source">Gourmet</span>
1736
-
1737
-
1738
-
1739
- </p>
1740
- </div>
1741
- <div class="clear"/>
1742
- </div>
1743
-
1744
- <div class="mc_row">
1745
-
1746
-
1747
-
1748
-
1749
-
1750
-
1751
-
1752
- <a href="/recipes/menu/views/rubell_korean_bbq" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_june/238539_46.jpg"/></a>
1753
-
1754
-
1755
-
1756
-
1757
- <div class="mc_row_content mcrc_img">
1758
- <p>
1759
-
1760
- <span class="rcm_count">4.</span>
1761
-
1762
-
1763
- <a class="rcm_title" href="/recipes/menu/views/rubell_korean_bbq">Seoul Food</a>
1764
-
1765
-
1766
-
1767
-
1768
-
1769
- <span class="rcm_source">Bon App�tit</span>
1770
-
1771
-
1772
-
1773
- </p>
1774
- </div>
1775
- <div class="clear"/>
1776
- </div>
1777
-
1778
- <div class="mc_row">
1779
-
1780
-
1781
-
1782
-
1783
-
1784
-
1785
-
1786
- <a href="/recipes/menu/views/big_easy_xmas" class="rcm_linkable_image"><img src="/images/recipesmenus/2006/2006_december/236764_46.jpg"/></a>
1787
-
1788
-
1789
-
1790
-
1791
- <div class="mc_row_content mcrc_img">
1792
- <p>
1793
-
1794
- <span class="rcm_count">5.</span>
1795
-
1796
-
1797
- <a class="rcm_title" href="/recipes/menu/views/big_easy_xmas">Christmas Eve, Big &amp; Easy</a>
1798
-
1799
-
1800
-
1801
-
1802
-
1803
- <span class="rcm_source">Bon App�tit</span>
1804
-
1805
-
1806
-
1807
- </p>
1808
- </div>
1809
- <div class="clear"/>
1810
- </div>
1811
-
1812
- <div class="mc_row">
1813
-
1814
-
1815
-
1816
-
1817
-
1818
-
1819
-
1820
- <a href="/recipes/menu/views/jacques-pepin-essential-pepin" class="rcm_linkable_image"><img src="/images/recipesmenus/2011/2011_october/366529_46.jpg"/></a>
1821
-
1822
-
1823
-
1824
-
1825
- <div class="mc_row_content mcrc_img">
1826
- <p>
1827
-
1828
- <span class="rcm_count">6.</span>
1829
-
1830
-
1831
- <a class="rcm_title" href="/recipes/menu/views/jacques-pepin-essential-pepin">Classic Recipes from Jacques P�pin's Essent...</a>
1832
-
1833
-
1834
-
1835
-
1836
-
1837
- <span class="rcm_source">Epicurious</span>
1838
-
1839
-
1840
-
1841
- </p>
1842
- </div>
1843
- <div class="clear"/>
1844
- </div>
1845
-
1846
- <div class="mc_row">
1847
-
1848
-
1849
-
1850
-
1851
-
1852
-
1853
-
1854
- <a href="/recipes/menu/views/jul07" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_july/238945_46.jpg"/></a>
1855
-
1856
-
1857
-
1858
-
1859
- <div class="mc_row_content mcrc_img">
1860
- <p>
1861
-
1862
- <span class="rcm_count">7.</span>
1863
-
1864
-
1865
- <a class="rcm_title" href="/recipes/menu/views/jul07">Speedy Summer Dishes </a>
1866
-
1867
-
1868
-
1869
-
1870
-
1871
- <span class="rcm_source">Gourmet</span>
1872
-
1873
-
1874
-
1875
- </p>
1876
- </div>
1877
- <div class="clear"/>
1878
- </div>
1879
-
1880
- <div class="mc_row">
1881
-
1882
-
1883
-
1884
-
1885
-
1886
-
1887
-
1888
- <a href="/recipes/menu/views/bamp_allamericanbbq" class="rcm_linkable_image"><img src="/images/recipesmenus/2001/2001_july/105299_46.jpg"/></a>
1889
-
1890
-
1891
-
1892
-
1893
- <div class="mc_row_content mcrc_img">
1894
- <p>
1895
-
1896
- <span class="rcm_count">8.</span>
1897
-
1898
-
1899
- <a class="rcm_title" href="/recipes/menu/views/bamp_allamericanbbq">All-American Barbecue Menu</a>
1900
-
1901
-
1902
-
1903
-
1904
-
1905
- <span class="rcm_source">Bon App�tit</span>
1906
-
1907
-
1908
-
1909
- </p>
1910
- </div>
1911
- <div class="clear"/>
1912
- </div>
1913
-
1914
- <div class="mc_row">
1915
-
1916
-
1917
-
1918
-
1919
-
1920
-
1921
-
1922
- <a href="/recipes/menu/views/cooking_party" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_february/237193_46.jpg"/></a>
1923
-
1924
-
1925
-
1926
-
1927
- <div class="mc_row_content mcrc_img">
1928
- <p>
1929
-
1930
- <span class="rcm_count">9.</span>
1931
-
1932
-
1933
- <a class="rcm_title" href="/recipes/menu/views/cooking_party">Guess Who's Cooking the Dinner</a>
1934
-
1935
-
1936
-
1937
-
1938
-
1939
- <span class="rcm_source">Gourmet</span>
1940
-
1941
-
1942
-
1943
- </p>
1944
- </div>
1945
- <div class="clear"/>
1946
- </div>
1947
-
1948
- <div class="mc_row">
1949
-
1950
-
1951
-
1952
-
1953
-
1954
-
1955
-
1956
- <a href="/recipes/menu/views/feb07" class="rcm_linkable_image"><img src="/images/recipesmenus/2007/2007_february/237199_46.jpg"/></a>
1957
-
1958
-
1959
-
1960
-
1961
- <div class="mc_row_content mcrc_img">
1962
- <p>
1963
-
1964
- <span class="rcm_count">10.</span>
1965
-
1966
-
1967
- <a class="rcm_title" href="/recipes/menu/views/feb07">Speedy Winter Suppers and More</a>
1968
-
1969
-
1970
-
1971
-
1972
-
1973
- <span class="rcm_source">Gourmet</span>
1974
-
1975
-
1976
-
1977
- </p>
1978
- </div>
1979
- <div class="clear"/>
1980
- </div>
1981
-
1982
- <div class="mc_row">
1983
-
1984
-
1985
-
1986
-
1987
-
1988
-
1989
-
1990
- <a href="/recipes/menu/views/mediterranean_hanukkah" class="rcm_linkable_image"><img src="/images/recipesmenus/2006/2006_december/236779_46.jpg"/></a>
1991
-
1992
-
1993
-
1994
-
1995
- <div class="mc_row_content mcrc_img">
1996
- <p>
1997
-
1998
- <span class="rcm_count">11.</span>
1999
-
2000
-
2001
- <a class="rcm_title" href="/recipes/menu/views/mediterranean_hanukkah">The New Hanukkah</a>
2002
-
2003
-
2004
-
2005
-
2006
-
2007
- <span class="rcm_source">Bon App�tit</span>
2008
-
2009
-
2010
-
2011
- </p>
2012
- </div>
2013
- <div class="clear"/>
2014
- </div>
2015
-
2016
- <div class="last mc_row">
2017
-
2018
-
2019
-
2020
-
2021
-
2022
- <div class="mc_row_content">
2023
- <p>
2024
-
2025
- <span class="rcm_count">12.</span>
2026
-
2027
-
2028
- <a class="rcm_title rcm_menu_title" href="/recipes/menu/views/bamp_sophisticatedsummer">Sophisticated Summer Buffet</a>
2029
-
2030
-
2031
-
2032
-
2033
-
2034
- <span class="rcm_source">Bon App�tit</span>
2035
-
2036
-
2037
-
2038
- </p>
2039
- </div>
2040
- <div class="clear"/>
2041
- </div>
2042
-
2043
- </div>
2044
-
2045
-
2046
- <div id="rcm_article_content">
2047
-
2048
-
2049
-
2050
-
2051
-
2052
- <div class="mc_row">
2053
-
2054
-
2055
-
2056
-
2057
- <a href="/articlesguides/howtocook/dishes/roasts" class="rcm_linkable_image">
2058
- <img src="/images/articlesguides/howtocook/dishes/roasts_46.jpg" alt="Our Favorite Roast Recipes"/></a>
2059
-
2060
-
2061
- <div class="mc_row_content mcrc_img">
2062
- <p>
2063
-
2064
- <span class="rcm_count">1.</span>
2065
-
2066
-
2067
- <a class="rcm_title" href="/articlesguides/howtocook/dishes/roasts">Our Favorite Roast Recipes</a>
2068
-
2069
-
2070
- <span class="rcm_article_archive_dek">Recipes and tips for roasting beef, poultry, lamb, and pork</span>
2071
- </p>
2072
- </div>
2073
- <div class="clear"/>
2074
- </div>
2075
-
2076
- <div class="mc_row">
2077
-
2078
-
2079
-
2080
-
2081
-
2082
-
2083
- <a href="/articlesguides/holidays/grilling/rib-primer" class="rcm_linkable_image">
2084
- <img src="/images/articlesguides/holidays/grilling/rib-primer_46.jpg" alt="Rib Essentials"/></a>
2085
-
2086
-
2087
- <div class="mc_row_content mcrc_img">
2088
- <p>
2089
-
2090
- <span class="rcm_count">2.</span>
2091
-
2092
-
2093
- <a class="rcm_title" href="/articlesguides/holidays/grilling/rib-primer">Rib Essentials</a>
2094
-
2095
-
2096
- <span class="rcm_article_archive_dek">BBQ masters Ardie A. Davis and Paul Kirk share recipes and tips for grilling and smoking pork, beef, bison, and lamb ribs</span>
2097
- </p>
2098
- </div>
2099
- <div class="clear"/>
2100
- </div>
2101
-
2102
- <div class="mc_row">
2103
-
2104
-
2105
-
2106
-
2107
-
2108
-
2109
- <a href="/articlesguides/howtocook/primers/burgers" class="rcm_linkable_image">
2110
- <img src="/images/articlesguides/howtocook/primers/burgers_46.jpg" alt="Hamburger Helper"/></a>
2111
-
2112
-
2113
- <div class="mc_row_content mcrc_img">
2114
- <p>
2115
-
2116
- <span class="rcm_count">3.</span>
2117
-
2118
-
2119
- <a class="rcm_title" href="/articlesguides/howtocook/primers/burgers">Hamburger Helper</a>
2120
-
2121
-
2122
- <span class="rcm_article_archive_dek">A guide to achieving burger perfection, whether starting with store-bought ground beef or grinding it yourself</span>
2123
- </p>
2124
- </div>
2125
- <div class="clear"/>
2126
- </div>
2127
-
2128
- <div class="mc_row">
2129
-
2130
-
2131
-
2132
-
2133
-
2134
-
2135
- <a href="/articlesguides/cuisines/aroundtheworldin80dishes/francecassouletrecipe" class="rcm_linkable_image">
2136
- <img src="/images/articlesguides/cuisines/aroundtheworldin80dishes/francecassouletrecipe_46.jpg" alt="France: Cassoulet Recipe, Video, and Cooking Tips"/></a>
2137
-
2138
-
2139
- <div class="mc_row_content mcrc_img">
2140
- <p>
2141
-
2142
- <span class="rcm_count">4.</span>
2143
-
2144
-
2145
- <a class="rcm_title" href="/articlesguides/cuisines/aroundtheworldin80dishes/francecassouletrecipe">France: Cassoulet Recipe, Video, and Cooking Tips</a>
2146
-
2147
-
2148
- <span class="rcm_article_archive_dek">In this episode of our video series on international cuisines, learn how to a French meat and bean stew</span>
2149
- </p>
2150
- </div>
2151
- <div class="clear"/>
2152
- </div>
2153
-
2154
- <div class="mc_row">
2155
-
2156
-
2157
-
2158
-
2159
- <a href="/articlesguides/holidays/kentucky/burgoo" class="rcm_linkable_image">
2160
- <img src="/images/articlesguides/holidays/kentucky/burgoo_46.jpg" alt="The History of Burgoo"/></a>
2161
-
2162
-
2163
- <div class="mc_row_content mcrc_img">
2164
- <p>
2165
-
2166
- <span class="rcm_count">5.</span>
2167
-
2168
-
2169
- <a class="rcm_title" href="/articlesguides/holidays/kentucky/burgoo">The History of Burgoo</a>
2170
-
2171
-
2172
- <span class="rcm_article_archive_dek">Jean Anderson digs deep into Kentucky Burgoo's past</span>
2173
- </p>
2174
- </div>
2175
- <div class="clear"/>
2176
- </div>
2177
-
2178
- <div class="mc_row">
2179
-
2180
-
2181
-
2182
-
2183
- <a href="/articlesguides/howtocook/dishes/salmon" class="rcm_linkable_image">
2184
- <img src="/images/articlesguides/howtocook/dishes/salmon_46.jpg" alt="Our Favorite Salmon Recipes"/></a>
2185
-
2186
-
2187
- <div class="mc_row_content mcrc_img">
2188
- <p>
2189
-
2190
- <span class="rcm_count">6.</span>
2191
-
2192
-
2193
- <a class="rcm_title" href="/articlesguides/howtocook/dishes/salmon">Our Favorite Salmon Recipes</a>
2194
-
2195
-
2196
- <span class="rcm_article_archive_dek">Recipes and tips for succulent salmon</span>
2197
- </p>
2198
- </div>
2199
- <div class="clear"/>
2200
- </div>
2201
-
2202
- <div class="mc_row">
2203
-
2204
-
2205
-
2206
-
2207
- <a href="/articlesguides/everydaycooking/family/leftoversforlunch" class="rcm_linkable_image">
2208
- <img src="/images/articlesguides/everydaycooking/family/leftoversforlunch_46.jpg" alt="Leftovers for Lunch"/></a>
2209
-
2210
-
2211
- <div class="mc_row_content mcrc_img">
2212
- <p>
2213
-
2214
- <span class="rcm_count">7.</span>
2215
-
2216
-
2217
- <a class="rcm_title" href="/articlesguides/everydaycooking/family/leftoversforlunch">Leftovers for Lunch</a>
2218
-
2219
-
2220
- <span class="rcm_article_archive_dek">Easy ideas for turning last night's dinner into lunchbox treats</span>
2221
- </p>
2222
- </div>
2223
- <div class="clear"/>
2224
- </div>
2225
-
2226
- <div class="mc_row">
2227
-
2228
-
2229
-
2230
-
2231
- <a href="/articlesguides/howtocook/dishes/takeout-recipes-chicken-tikka-masala" class="rcm_linkable_image">
2232
- <img src="/images/articlesguides/howtocook/dishes/takeout-recipes-chicken-tikka-masala_46.jpg" alt="Take-Out Favorites: Chicken Tikka Masala"/></a>
2233
-
2234
-
2235
- <div class="mc_row_content mcrc_img">
2236
- <p>
2237
-
2238
- <span class="rcm_count">8.</span>
2239
-
2240
-
2241
- <a class="rcm_title" href="/articlesguides/howtocook/dishes/takeout-recipes-chicken-tikka-masala">Take-Out Favorites: Chicken Tikka Masala</a>
2242
-
2243
-
2244
- <span class="rcm_article_archive_dek">With Julie Sahni's easy recipe and helpful kitchen tips, you can make this Indian-restaurant favorite at home</span>
2245
- </p>
2246
- </div>
2247
- <div class="clear"/>
2248
- </div>
2249
-
2250
- <div class="mc_row">
2251
-
2252
-
2253
-
2254
-
2255
-
2256
-
2257
- <a href="/articlesguides/cuisines/aroundtheworldin80dishes/puertoricomofongorecipe" class="rcm_linkable_image">
2258
- <img src="/images/articlesguides/cuisines/aroundtheworldin80dishes/puertoricomofongorecipe_46.jpg" alt="Puerto Rico: Mofongo Recipe, Video, and Cooking Tips"/></a>
2259
-
2260
-
2261
- <div class="mc_row_content mcrc_img">
2262
- <p>
2263
-
2264
- <span class="rcm_count">9.</span>
2265
-
2266
-
2267
- <a class="rcm_title" href="/articlesguides/cuisines/aroundtheworldin80dishes/puertoricomofongorecipe">Puerto Rico: Mofongo Recipe, Video, and Cooking...</a>
2268
-
2269
-
2270
- <span class="rcm_article_archive_dek">In this episode of our video series on international cuisines, learn the secret to making Puerto Rican plantain balls</span>
2271
- </p>
2272
- </div>
2273
- <div class="clear"/>
2274
- </div>
2275
-
2276
- <div class="mc_row">
2277
-
2278
-
2279
-
2280
-
2281
-
2282
-
2283
- <a href="/articlesguides/cuisines/aroundtheworldin80dishes/vietnamphoborecipe" class="rcm_linkable_image">
2284
- <img src="/images/articlesguides/cuisines/aroundtheworldin80dishes/vietnamphoborecipe_46.jpg" alt="Vietnam: Pho Bo Recipe, Video, and Cooking Tips"/></a>
2285
-
2286
-
2287
- <div class="mc_row_content mcrc_img">
2288
- <p>
2289
-
2290
- <span class="rcm_count">10.</span>
2291
-
2292
-
2293
- <a class="rcm_title" href="/articlesguides/cuisines/aroundtheworldin80dishes/vietnamphoborecipe">Vietnam: Pho Bo Recipe, Video, and Cooking Tips</a>
2294
-
2295
-
2296
- <span class="rcm_article_archive_dek">In this episode of our video series on international cuisines, learn how to make a classic Vietnamese recipe for pho bo</span>
2297
- </p>
2298
- </div>
2299
- <div class="clear"/>
2300
- </div>
2301
-
2302
- <div class="mc_row">
2303
-
2304
-
2305
-
2306
-
2307
- <a href="/articlesguides/bestof/toprecipes/bestchickenrecipes" class="rcm_linkable_image">
2308
- <img src="/images/articlesguides/bestof/toprecipes/bestchickenrecipes_46.jpg" alt="Best Chicken Recipes"/></a>
2309
-
2310
-
2311
- <div class="mc_row_content mcrc_img">
2312
- <p>
2313
-
2314
- <span class="rcm_count">11.</span>
2315
-
2316
-
2317
- <a class="rcm_title" href="/articlesguides/bestof/toprecipes/bestchickenrecipes">Best Chicken Recipes</a>
2318
-
2319
-
2320
- <span class="rcm_article_archive_dek">Tasty, top-rated recipes for chicken that's grilled, roasted, and fried</span>
2321
- </p>
2322
- </div>
2323
- <div class="clear"/>
2324
- </div>
2325
-
2326
- <div class="last mc_row">
2327
-
2328
-
2329
-
2330
-
2331
- <a href="/articlesguides/bestof/toprecipes/beststeakrecipes" class="rcm_linkable_image">
2332
- <img src="/images/articlesguides/bestof/toprecipes/beststeakrecipes_46.jpg" alt="Best Steak Recipes"/></a>
2333
-
2334
-
2335
- <div class="mc_row_content mcrc_img">
2336
- <p>
2337
-
2338
- <span class="rcm_count">12.</span>
2339
-
2340
-
2341
- <a class="rcm_title" href="/articlesguides/bestof/toprecipes/beststeakrecipes">Best Steak Recipes</a>
2342
-
2343
-
2344
- <span class="rcm_article_archive_dek">Steak recipes for beef cuts including rib eye, skirt, and porterhouse</span>
2345
- </p>
2346
- </div>
2347
- <div class="clear"/>
2348
- </div>
2349
-
2350
- </div>
2351
-
2352
-
2353
-
2354
- <button class="scroll_down" id="rc_scroll_down" onfocus="blur(this)"/>
2355
- </div>
2356
-
2357
-
2358
- </div>
2359
- <script type="text/javascript" language="JavaScript" src="/rd_scripts/modules/related_content.js"/><div class="module">
2360
- <div class="widget" id="ad_widget">
2361
- <h2>Advertising</h2>
2362
- <div id="ads-a">
2363
-
2364
-
2365
-
2366
-
2367
-
2368
-
2369
-
2370
-
2371
-
2372
-
2373
-
2374
-
2375
-
2376
-
2377
-
2378
-
2379
-
2380
-
2381
-
2382
-
2383
-
2384
-
2385
-
2386
-
2387
-
2388
-
2389
-
2390
- <div id="ad2083033415_300x250_frame" class="displayAd displayAd300x250Js" data-cb-ad-id="ad2083033415_300x250_frame"/>
2391
- <script type="text/javascript"><![CDATA[
2392
- //<!--
2393
-
2394
- CN.dart.call('ad2083033415_', {sz:'300x250', kws:[], collapse: false});
2395
- //-->
2396
- ]]></script></div>
2397
- </div>
2398
- </div>
2399
-
2400
-
2401
-
2402
-
2403
-
2404
-
2405
-
2406
-
2407
-
2408
-
2409
-
2410
-
2411
-
2412
-
2413
- <div id="recipe_of_the_day_module" class="modular content_unit dropshadowed">
2414
- <h2>Recipe Of The Day</h2>
2415
-
2416
- <span id="rotd_share">share</span>
2417
-
2418
- <a href="http://feeds.epicurious.com/newrecipes" id="rotd_rss" target="_blank"/>
2419
-
2420
- <a href="http://apps.facebook.com/recipeday/?action=start&amp;&amp;_fb_fromhash=012a8d1f39b37a2e4ca768185653aba4" id="rotd_fb" target="_blank"/>
2421
-
2422
- <div id="recipe_of_the_day_content">
2423
-
2424
- <a id="rotd_linkable_image" href="/recipes/food/views/51180210"><img src="/images/recipesmenus/2013/2013_july/51180210_116.jpg" alt="Chia Seed Porridge with Orange &amp; Yogurt"/></a>
2425
-
2426
- <div id="rotd_details">
2427
- <h3><a href="/recipes/food/views/51180210">Chia Seed Porridge with Orange &amp; Yogurt</a></h3>
2428
- <p><em>Le Pain Quotidien Cookbook</em>, July 2013</p>
2429
- </div>
2430
- <div class="clear"/>
2431
- </div>
2432
- </div>
2433
-
2434
-
2435
- <div class="adSense300x250">
2436
- <script language="JavaScript"><![CDATA[<!--
2437
- google_ad_client = "ca-conde-epicurious";
2438
- /* Epi Right Rail Text Rectangle */
2439
- google_ad_channel = "2538396819";
2440
- google_ad_width = 300;
2441
- google_ad_height = 250;
2442
- google_ad_type = "text";
2443
- //-->
2444
- ]]></script><script language="JavaScript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"><![CDATA[
2445
- ]]></script></div>
2446
-
2447
-
2448
-
2449
-
2450
- </div>
2451
-
2452
- <script type="text/javascript" language="JavaScript 1.5"><![CDATA[roundContainer("secondary");]]></script><div class="separator">
2453
- <hr/></div>
2454
-
2455
-
2456
-
2457
-
2458
-
2459
-
2460
- <div id="breadcrumb_session">
2461
- <div id="bc_left">
2462
-
2463
-
2464
- <a href="/" id="bc_homeicon"><span>home</span></a>
2465
- &#8250;
2466
-
2467
- <a href="/articlesguides" class="bc_links">articles &amp; guides</a>
2468
- &#8250;
2469
-
2470
- <a href="/articlesguides/bestof" class="bc_links">best of epicurious</a>
2471
- &#8250;
2472
-
2473
- <a href="/articlesguides/bestof/toprecipes" class="bc_links">top-rated recipes</a>
2474
- &#8250;
2475
-
2476
- the best burger recipes
2477
-
2478
-
2479
-
2480
- </div>
2481
-
2482
-
2483
-
2484
-
2485
-
2486
-
2487
- <div class="separator">
2488
- <hr/></div>
2489
-
2490
- </div>
2491
-
2492
-
2493
- <div id="footerContainer">
2494
-
2495
- <ul id="utilities" class="autoclassed"><li><a rel="nofollow" href="/services/help">Help</a></li>
2496
- <li><a href="/services/sitemap">Site Map</a></li>
2497
- <li><a rel="nofollow" href="/services/help">Contact Us</a></li>
2498
- <li><a rel="nofollow" href="/services/masthead">Masthead</a></li>
2499
- <li><a rel="nofollow" target="_new" href="http://www.condenast.com/brands/epicurious">Advertising</a></li>
2500
- <li><a rel="nofollow" href="/services/presscenter">Press Center</a></li>
2501
- <li><a rel="nofollow" href="/services/subscriptions">Subscription Services</a></li>
2502
- <li><a rel="nofollow" href="/services/newsletters">Newsletters</a></li>
2503
-
2504
- <li><a rel="nofollow" href="/services/podcasts">Podcasts</a></li>
2505
- <li><a href="/services/rss" id="rss_img"><img src="/images/global/rssFooterIcon.gif" style="padding-right:0px; vertical-align: middle; text-decoration:none;"/></a></li>
2506
- <li><a href="/services/rss" id="rss_lnk">RSS feeds</a></li>
2507
- </ul><div id="footerContent">
2508
- <ul id="footerLinksList" class="condenastLinks"><li><a href="/services/subscriptions">SUBSCRIPTION SERVICES</a></li>
2509
- <li><a href="http://www.condenastcareers.com/">CAREERS</a></li>
2510
- <li><a href="http://www.condenaststore.com/">COND� NAST STORE</a></li>
2511
- <li><a href="http://www.condenast.com/reprints-permissions">REPRINTS/PERMISSIONS</a></li>
2512
- <script type="text/javascript"><![CDATA[
2513
- (function() {
2514
- if (/ip(hone|od)|android.*(mobile)|blackberry.*applewebkit|bb1\d.*mobile/i.test(navigator.userAgent)) {
2515
- var backToMobile = document.createElement("li"),
2516
- footerList = document.getElementById("footerLinksList");
2517
- backToMobile.innerHTML = '<a href="#" onclick="document.cookie=\'mobify-path=;expires=Thu, 01 Jan 1970 00:00:01 GMT;path=/\';location.reload()">RETURN TO MOBILE VERSION</a>';
2518
-
2519
- // Do a check if footerList exists because on mobile view that element is
2520
- // removed by mobify.
2521
- if (footerList) {
2522
- footerList.appendChild(backToMobile);
2523
- }
2524
- }
2525
- })();
2526
-
2527
- ]]></script></ul><div class="clear"> </div>
2528
- <div id="topquad">
2529
- <div class="footerLogo"><a href="http://www.condenast.com"><img src="/images/global/condenastdigitalLogo.gif" width="159" height="37"/></a><h3>Cond� Nast Digital</h3>
2530
- <p>Member of the <a href="/?mbid=epinetwork">Epicurious Network</a></p>
2531
- </div>
2532
- <span class="vertRule"> </span>
2533
- <div class="recipesNews">
2534
- For more great recipes &amp;<br/> food news, visit:<br/><ul class="food_news"><li><a href="http://www.facebook.com/epicurious">Epicurious on<br/>Facebook</a></li>
2535
- <li><a href="http://www.twitter.com/epicurious">Epicurious on<br/>Twitter</a></li>
2536
- <li><a href="http://youtube.com/epicurious">Epicurious on<br/>YouTube</a></li>
2537
- </ul><ul class="great_recipes"><li><a href="http://www.bonappetit.com/">Bon App�tit</a></li>
2538
- <li><a href="http://www.self.com/">Self</a></li>
2539
- <li><a href="http://www.nutritiondata.com/">Nutrition Data</a></li>
2540
- <li><a href="http://get.ziplist.com/" target="_blank">ZipList</a></li>
2541
- </ul></div>
2542
-
2543
- <span class="vertRule"> </span>
2544
- <div id="subscribe">Subscribe to a magazine:
2545
- <form name="footer_sub_links" id="footer_sub_links" action="">
2546
- <select name="sub_link_selector"><option selected="selected">Subscribe to a magazine:</option><option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/TopCategoriesDisplay?langId=-1&amp;storeId=10001&amp;catalogId=10001&amp;activeLink=Home&amp;source=oldstore">View Special Offers</option><option value="https://www.magazinestoresubscriptions.com/webapp/wcs/stores/servlet/TopCategoriesDisplay?langId=-1&amp;storeId=10001&amp;catalogId=10001&amp;activeLink=Home&amp;source=oldstore">View All Titles</option><option disabled="disabled">------------</option><option value="https://w1.buysub.com/pubs/N3/ALL/self.jsp?cds_page_id=1209&amp;cds_mag_code=ALL&amp;id=1214935921477&amp;lsid=81831312014050755&amp;vid=1&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=ALL">Allure</option><option value="https://w1.buysub.com/pubs/N3/ARD/self.jsp?cds_page_id=405&amp;cds_mag_code=ARD&amp;id=1214935989714&amp;lsid=81831312014050755&amp;vid=2&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=ARD">Architectural Digest</option><option value="https://w1.buysub.com/pubs/N3/BNA/self_control_split.jsp?cds_page_id=100&amp;cds_mag_code=BNA&amp;id=1214936059635&amp;lsid=81831312014050755&amp;vid=5&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=BNA">Bon App�tit</option><option value="https://w1.buysub.com/pubs/N3/BRI/self.jsp?cds_page_id=633&amp;cds_mag_code=BRI&amp;id=1214936029399&amp;lsid=81831312014050755&amp;vid=4&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=BRI">Brides</option><option value="https://w1.buysub.com/pubs/N3/TVL/self.jsp?cds_page_id=811&amp;cds_mag_code=TVL&amp;id=1214937677509&amp;lsid=81831341174053863&amp;vid=1&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=TVL">Conde Nast Traveler</option><option value="https://w1.buysub.com/pubs/N3/DET/self.jsp?cds_page_id=1253&amp;cds_mag_code=DET&amp;id=1214939061052&amp;lsid=81831404210056322&amp;vid=1&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=DET">Details</option><option value="https://w1.buysub.com/pubs/N3/GQM/self.jsp?cds_page_id=976&amp;cds_mag_code=GQM&amp;id=1214941035871&amp;lsid=81831436363038277&amp;vid=4&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=GQM">GQ</option><option value="https://w1.buysub.com/pubs/N3/GLM/self.jsp?cds_page_id=956&amp;cds_mag_code=GLM&amp;id=1214941632523&amp;lsid=81831436363038277&amp;vid=5&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=GLM">Glamour</option><option value="https://w1.buysub.com/pubs/N3/GLF/renewself.jsp?cds_page_id=17303&amp;cds_mag_code=GLF&amp;id=1214941694516&amp;lsid=81831436363038277&amp;vid=6&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=GLF">Golf Digest</option><option value="https://w1.buysub.com/pubs/N3/GWD/self.jsp?cds_page_id=17323&amp;cds_mag_code=GWD&amp;id=1214941710048&amp;lsid=81831436363038277&amp;vid=7&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=GWD">Golf World</option><option value="https://w1.buysub.com/pubs/N3/LKY/self_control_split.jsp?cds_page_id=799&amp;cds_mag_code=LKY&amp;id=1214941757850&amp;lsid=81831436363038277&amp;vid=10&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=LKY">Lucky</option><option value="https://w1.buysub.com/pubs/N3/SLF/self.jsp?cds_page_id=1231&amp;cds_mag_code=SLF&amp;id=1214941810166&amp;lsid=81831436363038277&amp;vid=13&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=SLF">Self</option><option value="https://w1.buysub.com/pubs/N3/TNV/self_makeUpPallete_060914.jsp?cds_page_id=26982&amp;cds_mag_code=TNV&amp;id=1214941824141&amp;lsid=81831436363038277&amp;vid=14&amp;cds_response_key=IRDNMUDD&amp;cds_mag_code=TNV">Teen Vogue</option><option value="https://w1.buysub.com/pubs/N3/NYR/self_1for1.jsp?cds_page_id=12454&amp;cds_mag_code=NYR&amp;id=1214941836477&amp;lsid=81831436363038277&amp;vid=15&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=NYR">The New Yorker</option><option value="https://w1.buysub.com/servlet/OrdersGateway?cds_mag_code=VYF&amp;cds_page_id=2367&amp;cds_response_key=ILDN51UD">Vanity Fair</option><option value="https://w1.buysub.com/pubs/N3/VOG/self_073007.jsp?cds_page_id=1242&amp;cds_mag_code=VOG&amp;id=1214941864708&amp;lsid=81831436363038277&amp;vid=17&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=VOG">Vogue</option><option value="https://w1.buysub.com/pubs/N3/WMG/self_control_split.jsp?cds_page_id=3158&amp;cds_mag_code=WMG&amp;id=1214941723577&amp;lsid=81831448435050861&amp;vid=1&amp;cds_response_key=ILDN51UD&amp;cds_mag_code=WMG">W</option><option value="https://w1.buysub.com/pubs/N3/WIR/digital_self_wiredtest.jsp?cds_page_id=22463&amp;cds_mag_code=WIR&amp;id=1214941895098&amp;lsid=81831436363038277&amp;vid=18&amp;cds_response_key=I2DNWTUD&amp;cds_mag_code=WIR">Wired</option></select></form>
2547
- </div>
2548
-
2549
- <span class="vertRule"> </span>
2550
- <div id="sister">View our sister sites:
2551
- <form id="condenet_sites_dropdown" name="condenet_sites_dropdown">
2552
- <select id="mag_list" onchange="if(document.condenet_sites_dropdown.mag_list.options[document.condenet_sites_dropdown.mag_list.selectedIndex].value != '') window.open(document.condenet_sites_dropdown.mag_list.options[document.condenet_sites_dropdown.mag_list.selectedIndex].value)" size="1" name="mag_list"><option value="" selected="selected">Cond� Nast Web sites:</option><option value=""/><option value="http://www.allure.com/">Allure</option><option value="http://www.architecturaldigest.com/">Architectural Digest</option><option value="http://www.ArsTechnica.com/">Ars Technica</option><option value="http://www.bonappetit.com/">Bon App�tit</option><option value="http://www.brides.com/">Brides.com</option><option value="http://www.CNTraveler.com/">Cond� Nast Traveler</option><option value="http://www.concierge.com/">Concierge.com</option><option value="http://www.Details.com/">Details</option><option value="http://www.glamour.com/">Glamour</option><option value="http://www.GolfDigest.com/">Golf Digest</option><option value="http://www.GolfWorld.com/">Golf World</option><option value="http://www.GQ.com/">GQ</option><option value="http://www.HotelChatter.com/">Hotel Chatter</option><option value="http://www.Jaunted.com/">Jaunted</option><option value="http://www.luckymag.com/">Lucky</option><option value="http://www.NutritionData.com/">Nutrition Data</option><option value="http://www.Reddit.com/">Reddit</option><option value="http://www.self.com/">Self</option><option value="http://www.Style.com/">Style.com</option><option value="http://www.teenvogue.com/">Teen Vogue</option><option value="http://www.newyorker.com/">The New Yorker</option><option value="http://www.vanityfair.com/">Vanity Fair</option><option value="http://www.Vogue.com/">Vogue</option><option value="http://www.Webmonkey.com/">Webmonkey</option><option value="http://www.Wired.com/">Wired.com</option><option value="http://www.wmagazine.com/">W</option></select></form>
2553
- <div class="clear"/>
2554
- </div>
2555
- </div>
2556
- <!-- End related-sites -->
2557
- <div id="legalquad">
2558
- <p>
2559
- � 2013 Cond� Nast. All rights reserved
2560
- </p>
2561
- <p>
2562
- Use of this site constitutes acceptance of our <a href="http://www.condenast.com/privacy-policy" onclick="window.open(this.href);return false;">User Agreement</a> (effective 3/21/12) and <a href="http://www.condenast.com/privacy-policy#privacypolicy" onclick="window.open(this.href);return false;">Privacy Policy</a> (effective 3/21/12)
2563
- </p>
2564
- <p>
2565
- <a href="http://www.condenast.com/privacy-policy#privacypolicy-california" onclick="window.open(this.href);return false;">Your California Privacy Rights</a>
2566
- </p>
2567
- <p>
2568
- The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of Cond� Nast.
2569
- </p>
2570
- <div class="add-choice">
2571
- <div class="add-choice-text">
2572
- <a href="http://www.condenast.com/privacy-policy#privacypolicy-optout" onclick="window.open(this.href);return false;">Ad Choices
2573
- </a>
2574
- </div>
2575
- <div class="add-choice-img">
2576
- <a href="http://www.condenast.com/privacy-policy#privacypolicy-optout" onclick="window.open(this.href);return false;">
2577
- <img width="10" height="10" border="0" src="/images/footer/common/ad_choices_arrow.png"/></a>
2578
- </div>
2579
- </div>
2580
- </div>
2581
- </div>
2582
-
2583
- <!-- End #disclaimers -->
2584
- <script><![CDATA[dynamicWrapperByTagAndClass('div','typeAorB-child','dynamic-wrapper',3);]]></script><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"><![CDATA[
2585
- ]]></script><script type="text/javascript"><![CDATA[
2586
- _uacct = "UA-2624365-1";
2587
- urchinTracker();
2588
- ]]></script></div>
2589
-
2590
- </div><!-- End pageWrapper -->
2591
-
2592
-
2593
-
2594
-
2595
-
2596
-
2597
-
2598
-
2599
-
2600
-
2601
-
2602
-
2603
-
2604
- <!-- omniture stats -->
2605
-
2606
-
2607
-
2608
-
2609
-
2610
-
2611
-
2612
-
2613
- <!-- SiteCatalyst code version: H.15.1.
2614
- Copyright 1997-2008 Omniture, Inc. More info available at
2615
- http://www.omniture.com -->
2616
-
2617
- <script language="JavaScript" type="text/javascript"><![CDATA[<!--
2618
- var s_account="condenet-epicurious";
2619
- var s_linkInternalFilters="javascript:,epicurious.com";
2620
- var s_trackingServer="stats.epicurious.com";
2621
- //-->
2622
- ]]></script><script type="text/javascript" src="/rd_scripts/stats/tag_loader.js"/><script type="text/javascript"><![CDATA[<!--
2623
- /* You may give each page an identifying name, server, and channel on
2624
- the next lines. */
2625
- s.prop6="articlesguides";
2626
- s.prop7="articlesguides:bestof";
2627
- s.prop8="articlesguides:bestof:toprecipes";
2628
- s.hier1="articlesguides,bestof,toprecipes,bestburgerrecipes";
2629
- s.prop9="articlesguides:bestof:toprecipes:bestburgerrecipes";
2630
-
2631
- /************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
2632
- var s_code=s.t();if(s_code)document.write(s_code)//-->]]></script><script language="JavaScript" type="text/javascript"><![CDATA[<!--
2633
- if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
2634
- //-->]]></script><noscript><a href="http://www.omniture.com" title="Web Analytics"><img src="http://condenast.112.2o7.net/b/ss/condenet-epicurious/1/H.15.1--NS/0" height="1" width="1" border="0" alt=""/></a></noscript><!--/DO NOT REMOVE/-->
2635
- <!-- End SiteCatalyst code version: H.15.1. -->
2636
-
2637
- <!-- end stats call -->
2638
-
2639
-
2640
- <script><![CDATA[
2641
- deleteDartZoneCookie();
2642
- ]]></script><script type="text/javascript" src="/scripts/ecom/magnet.popups.js"/><script type="text/javascript"><![CDATA[tyntVariables = {"ap":"Read More"};]]></script><script type="text/javascript" src="http://tcr.tynt.com/javascripts/Tracer.js?user=cdozgy3G8r3R3Eab7jrHtB&amp;s=112"/><script type="text/javascript"><![CDATA[
2643
- /* setting cookie that turns off exitpop monitor on contest pages
2644
- to preserve cc upsell window on top.
2645
- */
2646
- var contest = "";
2647
- if (contest != "") {
2648
- document.cookie = "exitpop=false;path=/user/" + contest;
2649
- }
2650
-
2651
- MAGNET.popups.excludeExitDomain("local");
2652
- MAGNET.popups.excludeExitDomain("localhost");
2653
- MAGNET.popups.excludeExitDomain("conde-dev.com");
2654
- MAGNET.popups.excludeExitDomain("epicurious.com");
2655
- MAGNET.popups.setArriving(false);
2656
- MAGNET.popups.setExiting(true, {
2657
- name: 'exitingpop',
2658
- cookie: 'ExitingCookie',
2659
- path: '/scripts/exitpop.html',
2660
- width: 300,
2661
- height: 250,
2662
- top: (screen.height/2)-(295/2),
2663
- left:(screen.width/2)-(460/2),
2664
- args: {
2665
- scrollbars: 0,
2666
- toolbar: 0
2667
- }
2668
- });
2669
- MAGNET.popups.init();
2670
-
2671
-
2672
- (function(w, d, s, $) {
2673
- function go() {
2674
- var js,
2675
- fjs = d.getElementsByTagName(s)[0],
2676
- load = function(url, id) {
2677
- if (d.getElementById(id)) {return;}
2678
- js = d.createElement(s);
2679
- js.src = url;
2680
- js.id = id;
2681
- fjs.parentNode.insertBefore(js, fjs);
2682
- };
2683
- load('https://secure.adnxs.com/seg?add=636736&t=1', 'adnxs');
2684
- }
2685
- $(function() {
2686
- go();
2687
- });
2688
- }(window, document, 'script', jQuery));
2689
- ]]></script><script type="text/javascript" src="/rd_scripts/session.js"/></body>
2690
- </html>