horsefield 0.3.14 → 0.4.1

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: 62193ebfdd43d86f1060dbe76ed316bf6882702e
4
- data.tar.gz: 897da75e94fae3fe33765517dda857935435ba91
3
+ metadata.gz: 7660ae16096480b5fa2c031687fadc74bd26d3cd
4
+ data.tar.gz: 2dc68034b66b622ca4b58563d30d5ae0cf3387b9
5
5
  SHA512:
6
- metadata.gz: fdab49d81c4c3b416aee6237d071aa02ce03c930401a285b46b29c2d828841f260c542c7a93a900eff63d78150f7ad415076d85d7a7908d11f5b11901d352090
7
- data.tar.gz: 16bf66b8100a58d592c5f805a6a8e934e407146255cc9dd6d8bc798495ecf51e7c7520f25ccba3aa72d5141c24c90f46fa070f56e1b25b46e76d6e25c4d4d9d5
6
+ metadata.gz: ed8d2ae41879a3021eeac0b5ad3efd480e8ed5958f97d63a157333c4de29b98c80ec07415f1da510abf6168179cb9d0adfd6237228ead596016bc8f5407e3a12
7
+ data.tar.gz: c7d7162ea1baf48f7c301da9d5cbeb17e0cba0201cf2bfee5d809807b01c180b6e5eded30e6b3944a5d2797bc90f3ddc8e0fef3827b2c9a7b8fd524123d35e08
data/.gitignore CHANGED
@@ -15,3 +15,8 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Guardfile ADDED
@@ -0,0 +1,11 @@
1
+ watch ("Guardfile") do
2
+ UI.info "Exiting because Guard must be restarted for changes to take effect"
3
+ exit 0
4
+ end
5
+
6
+ guard :minitest do
7
+ # with Minitest::Unit
8
+ watch(%r{^test/(.*)\/?test_(.*)\.rb$})
9
+ watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/#{m[1]}test_#{m[2]}.rb" }
10
+ watch(%r{^test/test_helper\.rb$}) { 'test' }
11
+ end
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Erik Strömberg
1
+ Copyright (c) 2015 Erik Strömberg
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -1,12 +1,14 @@
1
1
  # Horsefield
2
2
 
3
- It's a scraper.
3
+ It's a scraper
4
4
 
5
5
  ## Installation
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
- gem 'horsefield'
9
+ ```ruby
10
+ gem 'horsefield'
11
+ ```
10
12
 
11
13
  And then execute:
12
14
 
@@ -18,30 +20,12 @@ Or install it yourself as:
18
20
 
19
21
  ## Usage
20
22
 
21
- Horsefield.scrape 'http://jobb.monster.se/jobb/?q=ruby&cy=se' do
22
- many :jobs, '.listingsTable .odd, .listingsTable .even' do
23
- one :title, '.jobTitleContainer'
24
- one :company, '.companyContainer'
25
- end
26
- end
27
- Result
28
-
29
- {:jobs=>[
30
- {:title=>"Skickliga systemutvecklare", :company=>"Företag: Kentor IT Göteborg"},
31
- {:title=>"Software Developer to our Risk Infrastructure Team", :company=>"Företag: Klarna AB"},
32
- {:title=>"Utvecklare med ett brinnande intresse för säkerhet", :company=>"Företag: Omegapoint AB"},
33
- {:title=>"IT-tekniker till Skolan för bioteknologi (Scilifelab)", :company=>"Företag: Kungliga Tekniska Högskol..."},
34
- {:title=>"Coder (Perl) / Systems Engineer", :company=>"Företag: Amazon"},
35
- {:title=>"IT specialist med huvudet i molnet sökes", :company=>"Företag: Projectplace Internationa..."},
36
- {:title=>".NET-utvecklare med 2-4 års erfarenhet sökes till uppdrag!", :company=>"Företag: Lexicon IT-konsult"},
37
- {:title=>"Junior Systems Engineer/support med Linux-kunskap", :company=>"Företag: Bravura"},
38
- {:title=>"Javautvecklare med passion för mjukvaruutveckling till Pager...", :company=>"Företag: Academic Work"}]
39
- }
23
+ Scrape!
40
24
 
41
25
  ## Contributing
42
26
 
43
- 1. Fork it
27
+ 1. Fork it ( https://github.com/[my-github-username]/horsefield/fork )
44
28
  2. Create your feature branch (`git checkout -b my-new-feature`)
45
29
  3. Commit your changes (`git commit -am 'Add some feature'`)
46
30
  4. Push to the branch (`git push origin my-new-feature`)
47
- 5. Create new Pull Request
31
+ 5. Create a new Pull Request
data/Rakefile CHANGED
@@ -1,6 +1,7 @@
1
1
  require "bundler/gem_tasks"
2
- require 'rspec/core/rake_task'
2
+ require 'rake/testtask'
3
3
 
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- task :default => :spec
4
+ Rake::TestTask.new do |t|
5
+ t.libs << 'test'
6
+ t.pattern = 'test/**/test_*.rb'
7
+ end
data/horsefield.gemspec CHANGED
@@ -8,23 +8,19 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Horsefield::VERSION
9
9
  spec.authors = ["Erik Strömberg"]
10
10
  spec.email = ["erik.stromberg@gmail.com"]
11
- spec.description = %q{It's a scraper}
12
11
  spec.summary = %q{It's a scraper}
13
- spec.homepage = ""
12
+ spec.homepage = "http://github.com/apa512/horsefield"
14
13
  spec.license = "MIT"
15
14
 
16
- spec.files = `git ls-files`.split($/)
15
+ spec.files = `git ls-files -z`.split("\x0")
17
16
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
18
  spec.require_paths = ["lib"]
20
19
 
21
- spec.add_dependency "mechanize"
20
+ spec.add_dependency 'nokogiri'
22
21
 
23
- spec.add_development_dependency "bundler", "~> 1.3"
24
- spec.add_development_dependency "rake"
25
- spec.add_development_dependency "rspec"
22
+ spec.add_development_dependency "bundler", "~> 1.7"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "guard-minitest"
26
25
  spec.add_development_dependency "pry"
27
- spec.add_development_dependency "vcr"
28
- spec.add_development_dependency "webmock", "1.12.0"
29
- spec.add_development_dependency "watir-webdriver"
30
26
  end
data/lib/horsefield.rb CHANGED
@@ -1,8 +1,9 @@
1
- require "horsefield/version"
1
+ require 'horsefield/version'
2
2
  require 'horsefield/scraper'
3
+ require 'horsefield/diggable'
4
+ require 'horsefield/nokogiri'
5
+ require 'pry'
3
6
 
4
7
  module Horsefield
5
- def self.scrape(url = nil, html: nil, &block)
6
- Horsefield::Scraper.new.scrape(url, html: html, &block)
7
- end
8
+ # Your code goes here...
8
9
  end
@@ -0,0 +1,47 @@
1
+ module Horsefield
2
+ module Diggable
3
+ def many(name, selector, lookup = :optional, &block)
4
+ docs = search(selector)
5
+ raise MissingSelectorError if lookup == :required && docs.empty?
6
+ return fields if lookup == :presence && docs.empty?
7
+ nodes = docs.map do |doc|
8
+ doc.instance_eval(&processor(&block))
9
+ end
10
+
11
+ fields.merge!(Hash[[[name, nodes]]])
12
+ end
13
+
14
+ def one(name, selector = nil, lookup = :optional, &block)
15
+ doc = selector ? at(selector) : self
16
+ raise MissingSelectorError if lookup == :required && !doc
17
+ return fields if lookup == :presence && !doc
18
+ fields.merge!(Hash[[[name, doc && doc.instance_eval(&processor(&block))]]])
19
+ end
20
+
21
+ def many!(name, selector, &block)
22
+ many(name, selector, :required, &block)
23
+ end
24
+
25
+ def many?(name, selector, &block)
26
+ many(name, selector, :presence, &block)
27
+ end
28
+
29
+ def one!(name, selector = nil, &block)
30
+ one(name, selector, :required, &block)
31
+ end
32
+
33
+ def one?(name, selector = nil, &block)
34
+ one(name, selector, :presence, &block)
35
+ end
36
+
37
+ def processor(&block)
38
+ block || Proc.new { text.strip }
39
+ end
40
+
41
+ def fields
42
+ @fields ||= {}
43
+ end
44
+ end
45
+
46
+ class MissingSelectorError < StandardError; end
47
+ end
@@ -0,0 +1,11 @@
1
+ require 'nokogiri'
2
+
3
+ module Horsefield
4
+ class Nokogiri::HTML::Document
5
+ include Diggable
6
+ end
7
+
8
+ class Nokogiri::XML::Element
9
+ include Diggable
10
+ end
11
+ end
@@ -1,52 +1,61 @@
1
- require 'horsefield/node_set'
1
+ require 'uri'
2
+ require 'open-uri'
3
+ require 'nokogiri'
2
4
 
3
5
  module Horsefield
4
- class Scraper
5
- def initialize(browser = nil)
6
- @browser = browser
6
+ module Scraper
7
+ def self.included(base)
8
+ base.extend(ClassMethods)
7
9
  end
8
10
 
9
- def scrape(url = nil, html: nil, &block)
10
- raise 'I need either a URL or HTML to scrape!' unless url || html
11
-
12
- @url = url
13
- @html = html
14
-
15
- instance_eval &block
16
- node_set.process(&block)
11
+ def initialize(html_or_url)
12
+ @doc = Nokogiri::HTML(html_or_url =~ /\A#{URI::regexp}\Z/ ? open(html_or_url).read : html_or_url)
17
13
  end
18
14
 
19
- def browse(&block)
20
- browser.instance_eval &block
15
+ def [](field)
16
+ fields[field]
21
17
  end
22
18
 
23
- def scope(*)
19
+ def scrape
20
+ fields
24
21
  end
25
22
 
26
- def one(*)
23
+ def fields
24
+ @fields ||= self.class.lambdas.reduce({}) { |fields, l| fields.merge(l.call(@doc)) }
27
25
  end
28
26
 
29
- def many(*)
30
- end
27
+ module ClassMethods
28
+ def lambdas
29
+ @lambdas ||= []
30
+ end
31
31
 
32
- def page
33
- Nokogiri::HTML(html)
34
- end
32
+ def one(name, selector, lookup = :optional, &block)
33
+ self.lambdas << lambda { |doc| doc.one(name, selector, lookup, &block) }
34
+ end
35
35
 
36
- def html
37
- if browser.is_a? Mechanize
38
- @html || browser.get(@url).content
39
- elsif browser.is_a? Watir::Browser
40
- @html || (browser.goto(@url); browser.html)
36
+ def many(name, selector, lookup = :optional, &block)
37
+ self.lambdas << lambda { |doc| doc.many(name, selector, lookup, &block) }
41
38
  end
42
- end
43
39
 
44
- def browser
45
- @browser ||= Mechanize.new
46
- end
40
+ def many!(name, selector, &block)
41
+ many(name, selector, :required, &block)
42
+ end
43
+
44
+ def many?(name, selector, &block)
45
+ many(name, selector, :presence, &block)
46
+ end
47
+
48
+ def one!(name, selector = nil, &block)
49
+ one(name, selector, :required, &block)
50
+ end
51
+
52
+ def one?(name, selector = nil, &block)
53
+ one(name, selector, :presence, &block)
54
+ end
47
55
 
48
- def node_set
49
- @node_set ||= Horsefield::NodeSet.new(page)
56
+ def scope(selector, &block)
57
+ self.lambdas << lambda { |doc| doc.at(selector).instance_eval(&block) }
58
+ end
50
59
  end
51
60
  end
52
61
  end
@@ -1,3 +1,3 @@
1
1
  module Horsefield
2
- VERSION = "0.3.14"
2
+ VERSION = "0.4.1"
3
3
  end
@@ -0,0 +1,56 @@
1
+ require 'test_helper'
2
+
3
+ class RecipeScraper
4
+ include Horsefield::Scraper
5
+
6
+ scope '.hide_from_screen' do
7
+ one :title, 'h1'
8
+ one :description, 'h2'
9
+ end
10
+
11
+ many :nutritional_value, 'article.recipe_nutrition ul li' do
12
+ one(:type) { at('span').text }
13
+ one(:value) { at('span.value').text }
14
+ end
15
+ end
16
+
17
+ class RecipeScraperWithOptionalField
18
+ include Horsefield::Scraper
19
+
20
+ scope '.hide_from_screen' do
21
+ one :title, 'h1'
22
+ one :description, 'h2'
23
+ one? :missing, '.missing'
24
+ end
25
+ end
26
+
27
+ class RecipeScraperWithRequiredField
28
+ include Horsefield::Scraper
29
+
30
+ scope '.hide_from_screen' do
31
+ one :title, 'h1'
32
+ one :description, 'h2'
33
+ one! :important, '.important'
34
+ end
35
+ end
36
+
37
+ class TestScraper < Minitest::Test
38
+ def setup
39
+ @html = File.read(File.expand_path('../../recipe_source.html', __FILE__)).force_encoding('UTF-8')
40
+ end
41
+
42
+ def test_that_it_scrapes
43
+ recipe = RecipeScraper.new(@html).scrape
44
+
45
+ assert_equal 'Traditional Welsh cawl', recipe[:title]
46
+ end
47
+
48
+ def test_that_it_ignores_optional_fields
49
+ recipe = RecipeScraperWithOptionalField.new(@html).scrape
50
+ refute_includes recipe.keys, :missing
51
+ end
52
+
53
+ def test_that_it_raises_with_missing_required_field
54
+ assert_raises(Horsefield::MissingSelectorError) { RecipeScraperWithRequiredField.new(@html).scrape }
55
+ end
56
+ end
@@ -0,0 +1,2322 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <!-- Meta -->
5
+ <meta charset="utf-8" />
6
+
7
+ <meta name="description" content="This cawl recipe is traditional Welsh stew that's hearty and delicious; made with lamb Jamie's welsh cawl is a comforting dish that the family can enjoy." />
8
+ <meta name="keywords" content="" />
9
+ <meta name="author" content="JamieOliver.com" />
10
+
11
+ <!-- Icons -->
12
+ <link rel="shortcut icon" href="//cdn.jamieoliver.com/_beta/favicon.ico" type="image/x-icon" />
13
+ <link rel="apple-touch-icon" href="//cdn.jamieoliver.com/_beta/_beta/ipod-icon.png"/>
14
+
15
+ <!-- Mobile -->
16
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
17
+
18
+ <!-- Plugin CSS -->
19
+ <link type="text/css" href="/_beta/css/cssreset-min.css" rel="stylesheet" media="screen" />
20
+ <link type="text/css" href="//cdn.jamieoliver.com/_beta/css/bootstrap.min.css" rel="stylesheet" media="screen" />
21
+
22
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
23
+
24
+ <!-- Our CSS -->
25
+ <link type="text/css" href="/_beta/css/fontface.css?v=20141007" rel="stylesheet" media="screen" />
26
+ <link type="text/css" href="/_beta/css/mobile-portrait.css?v=20141007" rel="stylesheet" media="screen" />
27
+ <link type="text/css" href="/_beta/css/mobile-landscape.css?v=20141007" rel="stylesheet" media="screen and (min-width: 480px)" />
28
+ <link type="text/css" href="/_beta/css/tablet.css?v=20141007" rel="stylesheet" media="screen and (min-width: 700px)" />
29
+ <link type="text/css" href="/_beta/css/desktop.css?v=20141008" rel="stylesheet" media="screen and (min-width: 960px)" />
30
+ <link type="text/css" href="/_beta/css/all-site-global.css?v=20141007" rel="stylesheet" media="screen" />
31
+
32
+ <link type="text/css" href="/_beta/radium-one/radium-one.css?v=1.1" rel="stylesheet" media="screen" />
33
+ <!--[if lte IE 8]><link rel="stylesheet" href="/_beta/css/ie.css" type="text/css" media="screen" /><![endif]-->
34
+ <link type="text/css" href="/_beta/css/mob_media_que.2.0.css" rel="stylesheet" media="screen" />
35
+ <meta property="og:image" content="http://www.jamieoliver.com/_int/rdb2/upload/1405_13_1418915813_lrg.jpg" />
36
+ <meta property="og:site_name" content="Jamie Oliver" /><meta name="twitter:site" content="@jamieoliver">
37
+ <meta name="twitter:card" content="summary"/>
38
+ <meta name="twitter:title" content="Traditional Welsh Cawl | Friday Night Feasts | Jamie Oliver" />
39
+ <meta name="twitter:description" content="This cawl recipe is traditional Welsh stew that's hearty and delicious; made with lamb Jamie's welsh cawl is a comforting dish that the family can enjoy." />
40
+ <link type="text/css" href="//cdn.jamieoliver.com/_beta/recipes/css/recipes.1.0.css" rel="stylesheet" media="screen" />
41
+ <link type="text/css" href="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_beta/recipes/css/individual.2.4.6.css" rel="stylesheet" media="screen" />
42
+ <link type="text/css" href="/_beta/recipes/css/images.css" rel="stylesheet" media="screen" />
43
+ <link type="text/css" href="/_beta/recipes/css/nutrition-labels.css" rel="stylesheet" media="screen" />
44
+ <link type="text/css" href="/_beta/css/jquery.qtip.css" rel="stylesheet" media="screen" />
45
+
46
+ <!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
47
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
48
+ <script type="text/javascript" src="//cdn.jamieoliver.com/_beta/js/jquery.mob.clean.2.html.js"></script>
49
+
50
+ <!-- JS plugins -->
51
+ <script type="text/javascript" src="//cdn.jamieoliver.com/_beta/js/respond.min.js"></script>
52
+ <script type="text/javascript" src="//cdn.jamieoliver.com/_beta/js/bootstrap.min.js"></script>
53
+
54
+ <!-- Our JS -->
55
+ <script type="text/javascript" src="/_beta/radium-one/radium-one.js?v=1.1"></script>
56
+ <script type="text/javascript" src="/_beta/js/general.js"></script>
57
+ <script type="text/javascript" src="/_beta/js/nav.js"></script>
58
+
59
+ <!-- Section JS -->
60
+ <script type="text/javascript" src="//cdn.jamieoliver.com/_beta/recipes/js/recipes.1.0.js"></script>
61
+ <script type="text/javascript" src="/_beta/recipes/js/scripts.1.2.js"></script>
62
+ <script type="text/javascript" src="//cdn.jamieoliver.com/_beta/js/bootstrap-tab.js"></script>
63
+ <script type="text/javascript" src="/_beta/js/jquery.qtip.min2.js"></script>
64
+ <script type="text/javascript" src="/_beta/recipes/js/script.js"></script>
65
+ <script type='text/javascript'>
66
+ var ad_desktop_id = '1355082082358';
67
+ var ad_id = '1355082082358';
68
+ var ad_mobile_id = '1355169274237';
69
+ var ad_desktop_text = '';
70
+ var ad_mobile_text = '';
71
+ </script>
72
+
73
+ <!-- Amazon -->
74
+ <script type='text/javascript' src='http://c.amazon-adsystem.com/aax2/amzn_ads.js'></script>
75
+ <script type='text/javascript'>
76
+ try {
77
+ amznads.getAds('3199');
78
+ } catch(e) { /*ignore*/}
79
+ </script>
80
+
81
+ <script type="text/javascript" src="/_beta/js/resp_ads.2.0.js"></script>
82
+ <script type="text/javascript">
83
+ //initialise desktop ads
84
+ if(desktop_ads == 'y') {
85
+
86
+ var sky_x = 728;
87
+ var sky_y = 90;
88
+
89
+ var mpu_x = 300;
90
+ var mpu_y = 250;
91
+
92
+ var double_x = 300;
93
+ var double_y = 600;
94
+
95
+ var mobile = '';
96
+
97
+ var googletag = googletag || {};
98
+ googletag.cmd = googletag.cmd || [];
99
+ (function() {
100
+ var gads = document.createElement('script');
101
+ gads.async = true;
102
+ gads.type = 'text/javascript';
103
+ var useSSL = 'https:' == document.location.protocol;
104
+ gads.src = (useSSL ? 'https:' : 'http:') +
105
+ '//www.googletagservices.com/tag/js/gpt.js';
106
+ var node = document.getElementsByTagName('script')[0];
107
+ node.parentNode.insertBefore(gads, node);
108
+ })();
109
+
110
+ //initialise mobile ads
111
+ } else {
112
+
113
+ ad_id = ad_mobile_id;
114
+ if(ad_mobile_text != undefined) {
115
+ var ad_text = ad_mobile_text;
116
+ }
117
+
118
+ var sky_x = 6;
119
+ var sky_y = 1;
120
+
121
+ var mpu_x = 6;
122
+ var mpu_y = 1;
123
+
124
+ var double_x = 6;
125
+ var double_y = 1;
126
+
127
+ var mobile = 'Mobile';
128
+
129
+ (function() {
130
+ var useSSL = 'https:' == document.location.protocol;
131
+ var src = (useSSL ? 'https:' : 'http:') +
132
+ '//www.googletagservices.com/tag/js/gpt_mobile.js';
133
+ document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
134
+ })();
135
+
136
+ }
137
+ </script>
138
+
139
+ <script type='text/javascript'>
140
+ try {
141
+ amznads.setTargetingForGPTAsync('amznslots');
142
+ } catch(e) { /*ignore*/}
143
+ </script>
144
+
145
+
146
+ <script type='text/javascript'>
147
+ googletag.cmd.push(function() {
148
+ googletag.defineSlot('/3595/JamieOliver' + mobile + '/Recipes/IndividualRecipes', [[sky_x, sky_y], [970, 250]], 'div-gpt-ad-' + ad_id + '-0').addService(googletag.pubads());
149
+ googletag.defineOutOfPageSlot('/3595/JamieOliver' + mobile + '/Recipes/IndividualRecipes', 'div-gpt-ad-' + ad_id + '-0-oop').addService(googletag.pubads());
150
+ googletag.defineSlot('/3595/JamieOliver' + mobile + '/Recipes/IndividualRecipes', [mpu_x, mpu_y], 'div-gpt-ad-' + ad_id + '-1').addService(googletag.pubads());
151
+ googletag.defineSlot('/3595/JamieOliver' + mobile + '/Recipes/IndividualRecipes', [107, 35], 'div-gpt-ad-' + ad_id + '-2').addService(googletag.pubads());
152
+ googletag.pubads().setTargeting("RecipeID","traditional-welsh-cawl");
153
+ googletag.pubads().enableSingleRequest();
154
+ googletag.enableServices();
155
+ });
156
+ </script>
157
+ <!-- Title -->
158
+ <title>Traditional Welsh Cawl | Friday Night Feasts | Jamie Oliver</title>
159
+
160
+ <script type="text/javascript" src="//s.skimresources.com/js/7444X662626.skimlinks.js"></script>
161
+ <script> var noskimwords = 'true'; </script>
162
+ <!-- GA code -->
163
+ <script type="text/javascript">
164
+
165
+ var _gaq = _gaq || [];
166
+ _gaq.push(['_setAccount', 'UA-721428-3']);
167
+ _gaq.push(['_trackPageview']);
168
+
169
+ (function() {
170
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
171
+ ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
172
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
173
+ })();
174
+
175
+ </script>
176
+
177
+ <!-- Qubit code -->
178
+ <script>
179
+ window.universal_variable = {
180
+
181
+ "version": "1.2.0",
182
+
183
+ "page": {
184
+ "type": "Recipe"
185
+ },
186
+
187
+
188
+
189
+ // A "product" = a "recipe" ("product" is used to fit in with Qubit technology)
190
+ "product": {
191
+ "id": 1405,
192
+ "url": "/recipes/lamb-recipes/traditional-welsh-cawl/",
193
+ "name": "Traditional Welsh cawl",
194
+ "description": "This cawl recipe is traditional Welsh stew that's hearty and delicious; made with lamb Jamie's welsh cawl is a comforting dish that the family can enjoy.",
195
+ "category": "Recipes",
196
+ "subcategory": "", // add a subcategory here if one exists
197
+
198
+ // custom keys specific to Jamie Oliver:
199
+ "serves": "8","time": 120,"difficulty": "Super easy",
200
+ "shoppable": "y",
201
+ "main_ingredient": "Lamb",
202
+ "ingredients": [" sea salt"," freshly ground black pepper","1 onion","1 kg lamb neck fillet","1 kg swede","2 carrots","3 Maris Piper potatoes","2 parsnips","3 large leeks"],
203
+ "special_diet": "",
204
+ "kids": "n", // kid friendly
205
+ "occasions": ["Gorgeous Winter Soups"],
206
+ "courses": ["Mains","Starters"],
207
+ "dish_type": "Soup",
208
+ "world_food": "British",
209
+ "books_tv": "Jamie and Jimmy's Friday Night Feast",
210
+ "published_by": "Food Team",
211
+ "nutrition": {
212
+ "calories": {
213
+ "amount": 374,
214
+ "percentage": "19%"
215
+ },
216
+ "carbs": {
217
+ "amount": "25g",
218
+ "percentage": "10%"
219
+ },
220
+ "sugar": {
221
+ "amount": "12.1g",
222
+ "percentage": "13%"
223
+ },
224
+ "fat": {
225
+ "amount": "18.6g",
226
+ "percentage": "27%"
227
+ },
228
+ "saturates": {
229
+ "amount": "8.1g",
230
+ "percentage": "41%"
231
+ },
232
+ "protein": {
233
+ "amount": "28g",
234
+ "percentage": "62%"
235
+ }
236
+ },
237
+ "related_recipes": ["Quick lamb tagine with pan fried aubergine & cumin crunch","Roast rack of lamb with crushed potatoes","Empire roast lamb","Spring lamb, vegetable platter, mint sauce, Chianti gravy, chocolate fondue","Grilled Moroccan lamb chops","Scotch broth with winter root veg","Grilled lamb chops with fattoush","Spiced lamb lollipops with korma sauce and toasted almonds","Slow-cooked shoulder of lamb with roasted vegetables","Sizzling lamb chops scottadito","Dark, sticky stew","Easy Essex haggis neeps & tatties shepherd's pie stylie"]
238
+
239
+ },
240
+
241
+ "events": []
242
+
243
+ };
244
+ </script>
245
+ <script src='//d3c3cq33003psk.cloudfront.net/opentag-89617-965178.js' async defer></script>
246
+ <!-- End of Qubit xx -->
247
+
248
+ <!-- Begin comScore Tag -->
249
+ <script>
250
+ var _comscore = _comscore || [];
251
+ _comscore.push({ c1: "2", c2: "17817337" });
252
+ (function() {
253
+ var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
254
+ s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
255
+ el.parentNode.insertBefore(s, el);
256
+ })();
257
+ </script>
258
+ <!-- End comScore Tag -->
259
+
260
+ <!-- Begin Twitter Tag -->
261
+ <script src="//platform.twitter.com/oct.js" type="text/javascript"></script>
262
+ <script type="text/javascript">
263
+ twttr.conversion.trackPid('l4m4m');
264
+ </script>
265
+ <!-- End Twitter Tag -->
266
+
267
+ <!-- Woolworths tag -->
268
+ <script>
269
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
270
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
271
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
272
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
273
+
274
+ ga('create', 'UA-38610140-1', 'auto');
275
+ ga('send', 'pageview');
276
+
277
+ </script>
278
+
279
+ <!-- Google Tag Manager -->
280
+ <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-PBZTH3"
281
+ height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
282
+ <script type="text/javascript">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
283
+ new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
284
+ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
285
+ '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
286
+ })(window,document,'script','dataLayer','GTM-PBZTH3');</script>
287
+ <!-- End Google Tag Manager -->
288
+
289
+ </head>
290
+ <body>
291
+ <noscript>
292
+ <img src="http://b.scorecardresearch.com/p?c1=2&c2=17817337&cv=2.0&cj=1" alt="" />
293
+ <img height="1" width="1" style="display:none;" alt="" src="https://analytics.twitter.com/i/adsct?txn_id=l4m4m&p_id=Twitter" />
294
+ <img height="1" width="1" style="display:none;" alt="" src="//t.co/i/adsct?txn_id=l4m4m&p_id=Twitter" />
295
+ </noscript>
296
+
297
+ <!-- NEW ELEMENT WRAPPER FOR THE MOB MENU START -->
298
+ <div id="mob_content_wrapper">
299
+
300
+ <!-- DAN|ERIC:MODULE GLOBAL NAVIGATION AND QUICK LINKS -->
301
+ <header id="header">
302
+
303
+ <div id="mobheader">
304
+ <a id="left-toggle" href="#leftmobmenu" onclick="$('#mobnav').slideToggle(); $('#mobsearch').hide();">Toogle menu</a>
305
+ <a id="right-toggle" href="#rightmobmenu" onclick="$('#mobsearch').slideToggle(); $('#mobnav').hide();">Right Menu</a>
306
+
307
+ <div id="mobnav">
308
+ <ul id="leftmobmenu_s1">
309
+ <li><a href="/">Home</a></li>
310
+ <li><a href="#" onclick="$('#leftmobmenu_s1').toggle(); $('#leftmobmenu_s2a').toggle();">Recipes ></a></li>
311
+ <li><a href="/shop">Shop</a></li>
312
+ <li><a href="/restaurants">Restaurants</a></li>
313
+ <li><a href="/videos">Videos</a></li>
314
+ <li><a href="#" onclick="$('#leftmobmenu_s1nf').toggle(); $('#leftmobmenu_nf').toggle();">Discover ></a></li>
315
+ <ul id="leftmobmenu_nf" class="submovnav">
316
+ <li><a href="/news-and-features/features">-- Features</a></li>
317
+ <li><a href="/galleries">-- Galleries</a></li>
318
+ <li><a href="/news-and-features/news">-- News</a></li>
319
+ </ul>
320
+ <li><a href="http://www.jamieoliverfoodfoundation.org.uk/">Foundation</a></li>
321
+ <li><a href="/careers">Careers</a></li>
322
+ <li><a href="/help">Help & More</a></li>
323
+ <li><a href="/media-kit">Advertise With Us</a></li>
324
+ </ul>
325
+
326
+ <ul id="leftmobmenu_s2a" class="submovnav">
327
+ <li><a href="#" onclick="$('#leftmobmenu_s2a').toggle(); $('#leftmobmenu_s1').toggle();">&lt; Back</a></li>
328
+ <li><a href="/recipes">Recipes home</a></li>
329
+ <li><a href="/recipes/chicken-recipes">Chicken</a></li>
330
+ <li><a href="/recipes/beef-recipes">Beef</a></li>
331
+ <li><a href="/recipes/pasta-recipes">Pasta</a></li>
332
+ <li><a href="/recipes/seafood-recipes">Seafood</a></li>
333
+ <li><a href="/recipes/rice-recipes">Rice</a></li>
334
+ <li><a href="/recipes/fish-recipes">Fish</a></li>
335
+ <li><a href="/recipes/lamb-recipes">Lamb</a></li>
336
+ <li><a href="/recipes/pork-recipes">Pork</a></li>
337
+ <li><a href="/recipes/game-recipes">Game</a></li>
338
+ <li><a href="/recipes/duck-recipes">Duck</a></li>
339
+ <li><a href="/recipes/vegetables-recipes">Vegetables</a></li>
340
+ <li><a href="/recipes/chocolate-recipes">Chocolate</a></li>
341
+ <li><a href="/recipes/bread-recipes">Bread</a></li>
342
+ <li><a href="/recipes/cheese-recipes">Cheese</a></li>
343
+ <li><a href="/recipes/eggs-recipes">Eggs</a></li>
344
+ <li><a href="/recipes/fruit-recipes">Fruit</a></li>
345
+ <li><a href="/recipes/turkey-recipes">Turkey</a></li>
346
+ </ul>
347
+
348
+ <ul id="leftmobmenu_xmas" class="submovnav">
349
+ <li><a href="#" onclick="$('#leftmobmenu_xmas').toggle(); $('#leftmobmenu_s1').toggle();">&lt; Back</a></li>
350
+ <li><a href="http://www.jamieoliver.com/recipes/category/occasion/Christmas">Recipes</a></li>
351
+ <li><a href="http://www.jamieoliver.com/videos">Videos</a></li>
352
+ <li><a href="http://www.jamieoliver.com/recipes/category/occasion/Christmas/cooking-tips">Tips</a></li>
353
+ <li><a href="http://www.jamieoliver.com/category/news-and-blogs/blogs/christmas-blogs/">Blogs</a></li>
354
+ </ul>
355
+
356
+ </div>
357
+
358
+ <div id="mobsearch">
359
+ <!-- Your content -->
360
+ <form action="/recipes/search/" id="global_search" method="get">
361
+ <input type="text" name="q" class="input_text clear_search" placeholder="Search for recipes" value="">
362
+ <input type="submit" class="input_submit" value="Search" title="Search">
363
+ </form>
364
+ </div>
365
+ </div>
366
+
367
+ <!-- TOP ADVERT -->
368
+ <section id="top_banner">
369
+ <div class="cntr">
370
+ <div id="topAdvert"></div>
371
+ <script type="text/javascript">
372
+ headerAd();
373
+ </script>
374
+ </div>
375
+ </section>
376
+
377
+ <nav id="global">
378
+
379
+ <div id="top" class="cntr">
380
+
381
+ <section id="global-bar">
382
+
383
+ <a id="quick_links_toggle" class="active quick_links_toggle" title="Menu" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'QUICK LINKS ARROW', 'Quick links']);">
384
+ <span>Quick Links</span>
385
+ </a>
386
+
387
+ <ul id="global_links">
388
+
389
+ <li class="gn_1" title="Restaurants">
390
+ <a href="#" id="restaurants_top_link" >Restaurants</a>
391
+ </li>
392
+ <li class="gn_2" title="Shop">
393
+ <a href="/shop/">Shop</a>
394
+ </li>
395
+ <li class="gn_3">
396
+ <a href="http://www.jamieoliverfoodfoundation.org.uk/" target="_blank">Foundation</a>
397
+ </li>
398
+ <li class="gn_4" title="Careers">
399
+ <a href="/careers">Careers</a>
400
+ </li>
401
+
402
+ </ul>
403
+
404
+ <ul id="social_links">
405
+ <li class="instagram" title="Instagram"><a href="http://instagram.com/jamieoliver" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Instagram']);"><span>Instagram</span></a></li>
406
+ <li class="youtube" title="YouTube"><a href="http://www.youtube.com/jamieoliver" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'YouTube']);"><span>YouTube</span></a></li>
407
+ <li class="facebook" title="Facebook"><a href="http://www.facebook.com/jamieoliver" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Facebook']);"><span>Facebook</span></a></li>
408
+ <li class="twitter" title="Twitter"><a href="http://www.twitter.com/jamieoliver" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Twitter']);"><span>Twitter</span></a></li>
409
+ <li class="googleplus" title="Google+"><a href="https://plus.google.com/u/0/114841292885454063991/posts" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Google+']);"><span>Google+</span></a></li>
410
+ <li class="pinterest" title="Pinterest"><a href="http://pinterest.com/source/jamieoliver.com/" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Pinterest']);"><span>Pinterest</span></a></li>
411
+
412
+ </ul>
413
+
414
+ <a id="member_link" href="#" title="Sign in"><span>Log in</span></a>
415
+ <a id="search_toggle" href="#" title="Search"><span>Search</span></a>
416
+
417
+ </section>
418
+
419
+ </div>
420
+
421
+ </nav>
422
+
423
+ <nav id="quick_links">
424
+
425
+ <div class="cntr">
426
+
427
+ <ul class="ql_1">
428
+ <li class="heading">Jamieoliver.com</li>
429
+ <li><a href="http://www.jamieoliver.com" title="Home">Home</a></li>
430
+ <li><a href="http://www.jamieoliver.com/recipes" title="Recipes">Recipes</a></li>
431
+ <li><a href="http://www.jamieoliver.com/news-and-features" title="Inspiration">Discover</a></li>
432
+ <li><a href="http://www.jamieoliver.com/videos/home" title="Videos">Videos</a></li>
433
+ <li><a href="#" title="Restaurants">Restaurants</a></li>
434
+
435
+ <li><a href="http://www.jamieoliver.com/forums" title="Forums">Forums</a></li>
436
+ <li><a href="http://www.jamieoliver.com/competitions" title="Competitions">Competitions</a></li>
437
+ <li><a href="#" class="poppins" title="Sign up">Sign up</a></li>
438
+ <li><a href="http://www.jamieoliver.com/media-kit" title="Media-Kit">Advertise with us</a></li>
439
+ </ul>
440
+
441
+ <ul class="ql_2">
442
+ <li class="heading">Restaurants</li>
443
+ <li><a href="http://www.jamieoliver.com/italian" title="Jamie's Italian">Jamie's Italian</a></li>
444
+ <li><a href="http://www.fifteen.net" title="Fifteen">Fifteen</a></li>
445
+ <li><a href="http://www.barbecoa.com" title="Barbecoa">Barbecoa</a></li>
446
+ <li><a href="http://www.unionjacksrestaurants.com" title="Union Jacks">Union Jacks</a></li>
447
+ <li><a href="http://www.jamieoliver.com/recipease" title="Cooking School">Cooking School</a></li>
448
+ <li><a href="http://www.jamieoliver.com/fabulousfeasts/home" title="Catering">Catering</a></li>
449
+ </ul>
450
+
451
+ <ul class="ql_3">
452
+ <li class="heading">Shop</li>
453
+ <li><a href="http://stage.jamieoliver.com/shop/cookbooks" title="Books">Books</a></li>
454
+ <li><a href="http://stage.jamieoliver.com/shop/tv-shows" title="TV Shows">TV Shows</a></li>
455
+ <li><a href="http://stage.jamieoliver.com/shop/food/" title="Food">Food</a></li>
456
+ <li><a href="http://stage.jamieoliver.com/shop/homeware/" title="Homeware">Homeware</a></li>
457
+
458
+ <li><a href="http://www.jamieoliver.com/magazine" title="Jamie magazine">Jamie magazine</a></li>
459
+ <li><a href="http://www.jamieoliver.com/wood-fired-ovens" title="Wood fired ovens">Wood fired ovens</a></li>
460
+ <li><a href="http://www.nakedwines.com/" target="_blank" title="Naked wines">Naked wines</a></li>
461
+ </ul>
462
+
463
+ <ul class="ql_4">
464
+ <li class="heading">Foundation</li>
465
+ <li><a href="http://www.jamieoliver.com/foundation/" target="_blank" title="Foundation Home">Foundation Home</a></li>
466
+ <li><a href="http://www.jamieoliver.com/the-fifteen-apprentice-programme/home" title="Fifteen apprentice programme">Fifteen apprentice programme</a></li>
467
+ <li><a href="http://www.jamieoliver.com/jamies-ministry-of-food" title="Ministry of food">Ministry of food</a></li>
468
+ <li><a href="http://www.jamieoliver.com/us/foundation/jamies-food-revolution/home" title="Food revolution USA">Food revolution USA</a></li>
469
+ <li><a href="http://www.jamieoliver.com/kitchen-garden-project" title="Kitchen garden project">Kitchen garden project</a></li>
470
+ <li><a href="http://www.jamieoliver.com/school-dinners" title="School projects">School projects</a></li>
471
+ </ul>
472
+
473
+ <ul class="ql_5">
474
+ <li class="heading">Careers</li>
475
+ <li><a href="/careers" title="Careers home">Careers home</a></li>
476
+ <li><a href="/careers/vacancies.php" title="Vacancies">Vacancies</a></li>
477
+ </ul>
478
+
479
+ <br class="cfix" />
480
+
481
+ </div>
482
+
483
+
484
+
485
+ </nav>
486
+
487
+ <!-- DAN|ERIC: end MODULE GLOBAL NAVIGATION AND QUICK LINKS.. -->
488
+
489
+ <!-- DAN|ERIC: GLOBAL SEARCH AND MAIN MENU -->
490
+
491
+ <div id="shop-subs" class="container">
492
+ <ul>
493
+ <li><a href="/shop/cookbooks">Cookbooks</a></li>
494
+ <li><a href="/shop/tv-shows">TV Shows</a></li>
495
+ </ul>
496
+ </div>
497
+
498
+ <nav id="jo">
499
+ <div class="cntr">
500
+
501
+ <h3>
502
+ <a id="logo" href="http://www.jamieoliver.com" title="jamieoliver.com"></a>
503
+ <span id="title">jamieoliver.com</span>
504
+ </h3>
505
+
506
+ <!-- search form -->
507
+ <form action="/recipes/search/" id="global_search" method="get" class="m-toggle">
508
+ <input type="text" name="q" class="input_text clear_search" placeholder="Search for a recipe or category..." />
509
+ <select name="search_category" class="input_select" id="global_category">
510
+ <option value="recipes">recipes</option>
511
+ </select>
512
+ <input type="submit" class="input_submit" value="Search" title="Search" />
513
+ </form>
514
+ <!-- /search form -->
515
+
516
+ <!-- login -->
517
+ <div id="member_login">
518
+
519
+ <div class="signed_out">
520
+ <ul id="member_links">
521
+ <li class="ml_1 sign_up">
522
+ <a href="#" class="register_btn"><span class="poppins">Sign Up</span></a>
523
+ </li>
524
+
525
+ <li class="ml_2 sign_in"><a href="http://www.jamieoliver.com/forum/login.php?action=in"><span>Log in</span></a></li>
526
+ </ul>
527
+ </div>
528
+
529
+ <section id="sign_in">
530
+ <a href="#" onclick="jQuery('#sign_in').toggleClass('m-toggle'); return false;" class="close_menu"><span>Close</span></a>
531
+
532
+ <!--forum sign in -->
533
+ <form action="http://www.jamieoliver.com/forum/login.php?r=http://www.jamieoliver.com/recipes/lamb-recipes/traditional-welsh-cawl/&action=in" id="global_sign_in" method="post">
534
+ <input type="hidden" name="form_sent" value="1">
535
+ <input type="hidden" name="action" value="in">
536
+ <input type="hidden" name="r" value="http://www.jamieoliver.com/forum/register.php">
537
+ <input type="hidden" name="redirect_to" value="index.php" />
538
+
539
+ <p class="forgot">Username</p>
540
+ <input type="text" name="req_username" class="input_text" value="" size="20" tabindex="31" />
541
+
542
+ <p class="forgot">Pasword</p>
543
+ <input type="password" name="req_password" id="user_pass" class="input_text" value="" size="20" tabindex="31" />
544
+
545
+ <p class="forgot">Forgot Password? <a href="http://www.jamieoliver.com/forum/login.php?action=forget" target="_blank">
546
+ Retrieve it
547
+ </a></p>
548
+
549
+ <input type="submit" name="wp-submit" id="wp-submit" class="input_submit" value="Sign in" tabindex="32" />
550
+ <!--input type="submit" class="input_submit" value="Sign in" /-->
551
+ <input type="hidden" name="redirect_to" value="index.php" />
552
+
553
+ <p class="sign_up"><a class="register_btn" href="http://www.jamieoliver.com/forum/register.php">Not a member? Join</a></p>
554
+ </form>
555
+ <!--/forum sign in -->
556
+
557
+ <p class="divider"><span>Or</span></p>
558
+
559
+ <!--facebook connect -->
560
+ <form action="http://www.jamieoliver.com/fb" id="facebook_connect" method="post">
561
+ <input type="submit" class="input_submit" value="Connect using Facebook" title="Connect using Facebook" />
562
+ </form>
563
+ <!--/facebook connect -->
564
+
565
+ <div class="arrow"></div>
566
+ </section>
567
+
568
+
569
+ </div>
570
+ <!-- /login -->
571
+
572
+ <a id="jo_nav_mob" href="#">Nav</a>
573
+ <ul id="jo_nav">
574
+ <li class="nav_home "><a href="http://www.jamieoliver.com">Home</a></li>
575
+
576
+ <li class="nav_recipes active">
577
+ <a class="dropdown" href="/recipes">Recipes</a>
578
+ <!-- dropdowns -->
579
+ <nav id="meganav">
580
+
581
+ <ul class="cat_primary">
582
+ <li class="item1"><a href="http://www.jamieoliver.com/recipes/category/ingredient">Main ingredient</a></li>
583
+ <li class="item2"><a href="http://www.jamieoliver.com/recipes/category/dishtype">Dish type</a></li>
584
+ <li class="item3"><a href="http://www.jamieoliver.com/recipes/category/course">Meals &amp; courses</a></li>
585
+ <li class="item4"><a href="http://www.jamieoliver.com/recipes/category/occasion">Occasions</a></li>
586
+ <li class="item5"><a href="http://www.jamieoliver.com/recipes/category/lifestyle">Special diets</a></li>
587
+ <li class="item6"><a href="http://www.jamieoliver.com/recipes/category/world">World food</a></li>
588
+ <li class="item7"><a href="http://www.jamieoliver.com/recipes/kids-recipes">Kids recipes</a></li>
589
+ <li class="item8"><a href="http://www.jamieoliver.com/recipes/category/books">Books &amp; TV</a></li>
590
+ <li class="item9"><a href="http://www.jamieoliver.com/recipes/member-recipes">Member recipes</a></li>
591
+ <!--li class="item10"><a href="http://www.jamieoliver.com/recipes/category/dishtype/samsung-dual-cook">Samsung Dual Cook oven</a></li-->
592
+ </ul>
593
+
594
+ <div class="cat_secondary">
595
+
596
+ <ul class="item1">
597
+ <li><a href="http://www.jamieoliver.com/recipes/chicken-recipes">Chicken</a></li>
598
+ <li><a href="http://www.jamieoliver.com/recipes/beef-recipes">Beef</a></li>
599
+ <li><a href="http://www.jamieoliver.com/recipes/pasta-recipes">Pasta</a></li>
600
+ <li><a href="http://www.jamieoliver.com/recipes/seafood-recipes">Seafood</a></li>
601
+ <li><a href="http://www.jamieoliver.com/recipes/rice-recipes">Rice</a></li>
602
+ <li><a href="http://www.jamieoliver.com/recipes/fish-recipes">Fish</a></li>
603
+ <li><a href="http://www.jamieoliver.com/recipes/lamb-recipes">Lamb</a></li>
604
+ <li><a href="http://www.jamieoliver.com/recipes/pork-recipes">Pork</a></li>
605
+ <li><a href="http://www.jamieoliver.com/recipes/duck-recipes">Duck</a></li>
606
+ <li><a href="http://www.jamieoliver.com/recipes/game-recipes">Game</a></li>
607
+ <li><a href="http://www.jamieoliver.com/recipes/vegetables-recipes">Vegetables</a></li>
608
+ <li><a href="http://www.jamieoliver.com/recipes/chocolate-recipes">Chocolate</a></li>
609
+ <li><a href="http://www.jamieoliver.com/recipes/bread-recipes">Bread</a></li>
610
+ <li><a href="http://www.jamieoliver.com/recipes/cheese-recipes">Cheese</a></li>
611
+ <li><a href="http://www.jamieoliver.com/recipes/eggs-recipes">Eggs</a></li>
612
+ <li><a href="http://www.jamieoliver.com/recipes/fruit-recipes">Fruit</a></li>
613
+ <li class="last"><a href="http://www.jamieoliver.com/recipes/turkey-recipes">Turkey</a></li>
614
+ </ul>
615
+
616
+ <ul class="item2">
617
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/antipasti">ANTIPASTIS</a></li>
618
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/bread-doughs">BREADS &amp; DOUGHS</a></li>
619
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/cakes-tea-time-treats">CAKES &amp; TEA TIME TREATS</a></li>
620
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/curry">CURRIES</a></li>
621
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/drinks">DRINKS</a></li>
622
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/sandwiches-wraps">SANDWICHES &amp; WRAPS</a></li>
623
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/pasta-risotto">PASTA &amp; RISOTTOS</a></li>
624
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/pies-pastries">PIES &amp; PASTRIES</a></li>
625
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/pizza">PIZZAS</a></li>
626
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/puddings-desserts">PUDDINGS &amp; DESSERTS</a></li>
627
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/roast">ROASTS</a></li>
628
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/salad">SALADS</a></li>
629
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/sauces-condiments">SAUCES &amp; CONDIMENTS</a></li>
630
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/soup">SOUPS</a></li>
631
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/stew">STEWS</a></li>
632
+ <li><a href="http://www.jamieoliver.com/recipes/category/dishtype/vegetable-sides">VEGETABLE SIDES</a></li>
633
+ <li><a href="http://www.jamieoliver.com/recipes/search/?q=wood+fired&search_category=recipes">WOOD FIRED RECIPES</a></li>
634
+ </ul>
635
+
636
+ <ul class="item3">
637
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/breakfast">Breakfast</a></li>
638
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/starters">Starters</a></li>
639
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/mains">Mains</a></li>
640
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/desserts">Desserts</a></li>
641
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/drinks">Drinks</a></li>
642
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/cheap-cheerful">Cheap &amp; cheerful</a></li>
643
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/healthy-meals">Healthy meals</a></li>
644
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/meals-for-one">Meals for one</a></li>
645
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/quick-fixes">Quick fixes</a></li>
646
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/sauces">Sauces</a></li>
647
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/sides">Sides</a></li>
648
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/one-pan-recipes">ONE-PAN RECIPES</a></li>
649
+ <li><a href="http://www.jamieoliver.com/recipes/category/course/leftovers">LEFTOVERS</a></li>
650
+ <li class="last"><a href="http://www.jamieoliver.com/recipes/category/course/snacks">Snacks</a></li>
651
+ </ul>
652
+
653
+ <ul class="item4">
654
+
655
+ <li><a href="http://www.jamieoliver.com/recipes/category/occasion/burns-night-specials">Burns Night specials</a></li>
656
+ <li><a href="http://www.jamieoliver.com/recipes/category/occasion/gorgeous-winter-soups/">Gorgeous winter soups</a></li>
657
+ <li><a href="http://www.jamieoliver.com/recipes/category/occasion/romantic-meals">Romantic meals</a></li>
658
+ <li><a href="http://www.jamieoliver.com/recipes/category/occasion/dinner-for-two">Dinner for two</a></li>
659
+ <li><a href="http://www.jamieoliver.com/recipes/category/occasion/sunday-lunch">Sunday lunch</a></li>
660
+ <li><a href="http://www.jamieoliver.com/recipes/category/occasion/pancake-day/">Pancake day</a></li>
661
+ <li><a href="http://www.jamieoliver.com/recipes/category/occasion/dinner-party/">Dinner party</a></li>
662
+ <li class="last"><a href="http://www.jamieoliver.com/recipes/category/occasion">More</a></li>
663
+ </ul>
664
+
665
+ <ul class="item5">
666
+ <li><a href="http://www.jamieoliver.com/recipes/category/lifestyle/dairy-free">Dairy free</a></li>
667
+ <li><a href="http://www.jamieoliver.com/recipes/category/lifestyle/gluten-free">Gluten free</a></li>
668
+ <li><a href="http://www.jamieoliver.com/recipes/category/lifestyle/vegan">Vegan</a></li>
669
+ <li class="last"><a href="http://www.jamieoliver.com/recipes/category/lifestyle/vegetarian">Vegetarian</a></li>
670
+ </ul>
671
+
672
+ <ul class="item6">
673
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/american">American</a></li>
674
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/asian">Asian</a></li>
675
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/british">British</a></li>
676
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/french">French</a></li>
677
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/greek">Greek</a></li>
678
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/indian">Indian</a></li>
679
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/italian">Italian</a></li>
680
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/mexican">Mexican</a></li>
681
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/moroccan">Moroccan</a></li>
682
+ <li><a href="http://www.jamieoliver.com/recipes/category/world/spanish">Spanish</a></li>
683
+ <li class="last"><a href="http://www.jamieoliver.com/recipes/category/world/other-world-flavours">Other world flavours</a></li>
684
+ </ul>
685
+
686
+ <ul class="item8">
687
+ <li><a href="http://www.jamieoliver.com/recipes/category/books/jamie-and-jimmy-s-friday-night-feast">Friday Night Feast</a></li>
688
+ <li><a href="http://www.jamieoliver.com/christmas/#!jamies-cracking-christmas">Jamie's Cracking Christmas</a></li>
689
+ <li><a href="http://www.jamieoliver.com/recipes/category/books/jamie-s-comfort-food">Jamie's Comfort Food</a></li>
690
+ <li><a href="http://www.jamieoliver.com/recipes/magazine">Jamie Magazine</a></li>
691
+
692
+ <li><a href="http://www.jamieoliver.com/recipes/category/books/save-with-jamie">Save With Jamie</a></li>
693
+ <li><a href="http://www.jamieoliver.com/recipes/category/books/jamie-s-15-minute-meals">15-minute meals</a></li>
694
+ <li><a href="http://www.jamieoliver.com/recipes/category/books/food-fight-club">Food Fight Club</a></li>
695
+ <li><a href="http://www.jamieoliver.com/recipes/category/books/jamie-s-great-britain">Jamie's Great Britain</a></li>
696
+ <li><a href="http://www.jamieoliver.com/recipes/category/books/jamie-s-30-minute-meals">30-minute meals</a></li>
697
+ <li><a href="http://www.jamieoliver.com/recipes/category/books/jamie-does">Jamie Does...</a></li>
698
+ <li class="last"><a href="http://www.jamieoliver.com/recipes/category/books">More...</a></li>
699
+ </ul>
700
+
701
+ </div>
702
+
703
+ </nav>
704
+ <!-- /dropdowns -->
705
+ </li>
706
+
707
+
708
+
709
+
710
+ <li class="nav_videos "><a href="/videos">Videos</a></li>
711
+
712
+ <li class="nav_books_tv">
713
+ <a href="#">Restaurants</a>
714
+ </li>
715
+
716
+
717
+ <li class="nav_newsandblogs "><a class="dropdown" href="http://www.jamieoliver.com/news-and-features/">Discover</a>
718
+
719
+ <nav id="nabnav">
720
+ <ul class="cat_primary">
721
+ <li>
722
+ <a href="http://www.jamieoliver.com/news-and-features/features">Features</a>
723
+ </li>
724
+ <li>
725
+ <a href="http://www.jamieoliver.com/galleries">Galleries</a>
726
+ </li>
727
+ <li>
728
+ <a href="http://www.jamieoliver.com/news-and-features/news/">News</a>
729
+ </li>
730
+ </ul>
731
+ </nav>
732
+
733
+ </li>
734
+
735
+ <li class="nav_forum " ><a class="dropdown" href="#">Join In</a>
736
+ <nav id="joinnav">
737
+
738
+ <ul class="cat_primary">
739
+ <li>
740
+ <a href="/competitions">Competitions</a>
741
+ </li>
742
+ <li>
743
+ <a href="/forum">Forums</a>
744
+ </li>
745
+ </ul>
746
+
747
+ </nav>
748
+ </li>
749
+
750
+ </ul>
751
+ </div>
752
+
753
+ </nav>
754
+ <div id="restaurants_menu_wrapper" class="unactive" style="display: none;">
755
+ <ul id="restaurants_menu">
756
+ <li>
757
+ <a href="http://www.barbecoa.com">
758
+ <img src="//cdn.jamieoliver.com/_beta/images/barbecoa_icon.gif" alt="Barbecoa Jamie Oliver" />
759
+ </a>
760
+ </li>
761
+ <li>
762
+ <a href="http://www.fifteen.net">
763
+ <img src="//cdn.jamieoliver.com/_beta/images/fifteen_icon.gif" alt="Jamie Oliver Fifteen" />
764
+ </a>
765
+ </li>
766
+ <li>
767
+ <a href="http://www.jamieoliver.com/italian">
768
+ <img src="//cdn.jamieoliver.com/_beta/images/jamiesItalian_icon.gif" alt="Jamie's Italian" />
769
+ </a>
770
+ </li>
771
+ <li>
772
+ <a href="http://www.jamieoliver.com/recipease">
773
+ <img src="//cdn.jamieoliver.com/_beta/images/recipease_icon.gif" alt="Jamie Oliver Recipease" />
774
+ </a>
775
+ </li>
776
+ <li>
777
+ <a href="http://www.unionjacksrestaurants.com">
778
+ <img src="//cdn.jamieoliver.com/_beta/images/unionJacks_icon.gif" alt="Union Jacks" />
779
+ </a>
780
+ </li>
781
+ <li>
782
+ <a href="http://www.jamieoliversdiner.com">
783
+ <img src="//cdn.jamieoliver.com/_beta/images/diner_icon.jpg" alt="Jamie Oliver's Diner" />
784
+ </a>
785
+ </li>
786
+ </ul>
787
+ </div>
788
+
789
+ <!-- Sidebar -->
790
+ <aside id="sidebar">
791
+
792
+ <div class="button signup">
793
+
794
+ <a href="http://www.jamieoliver.com/join" title="Signup" class="click" onclick="_gaq.push(['_trackEvent', 'Click', 'Side bar join', '']);"></a>
795
+
796
+ <div class="panel">
797
+ <a href="#" class="poppins">
798
+ <h5>Sign up</h5>
799
+ <p>Get stuff first</p>
800
+ </a>
801
+ </div>
802
+
803
+ </div>
804
+
805
+ <div class="button print">
806
+
807
+ <a href="/recipes/print/1405" title="Print" class="click" onclick="_gaq.push(['_trackEvent', 'Click', 'Side bar print', '']);"></a>
808
+
809
+ <div class="panel">
810
+ <a href="/recipes/print/1405">
811
+ <h5>Print</h5>
812
+ <p>Put it on paper</p>
813
+ </a>
814
+ </div>
815
+
816
+ </div>
817
+
818
+ <div class="button recipe">
819
+
820
+ <a href="http://www.jamieoliver.com/recipes/member-recipes/add" title="Upload recipe" class="click" onclick="_gaq.push(['_trackEvent', 'Click', 'Side bar recipe', '']);"></a>
821
+
822
+ <div class="panel">
823
+ <a href="http://www.jamieoliver.com/recipes/member-recipes/add">
824
+ <h5>Upload recipe</h5>
825
+ <p>Stick it in your folder</p>
826
+ </a>
827
+ </div>
828
+
829
+ </div>
830
+
831
+ <div class="button social">
832
+
833
+ <a href="#" title="Social media" class="click"></a>
834
+
835
+ <div class="panel panel_large">
836
+
837
+ <h5>Share the love</h5>
838
+ <p>Give it the thumbs-up</p>
839
+
840
+ <div class="network">
841
+ <p>Facebook share</p>
842
+ <div class="fb-like" data-send="false" data-layout="button_count" data-width="140" data-show-faces="false" onclick="_gaq.push(['_trackEvent', 'Click', 'Side bar facebook', '']);"></div>
843
+ </div>
844
+ <div class="network">
845
+ <p>Tweet share</p>
846
+ <a href="https://twitter.com/share" class="twitter-share-button" onclick="_gaq.push(['_trackEvent', 'Click', 'Side bar tweet', '']);">Tweet</a>
847
+ <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
848
+ </div>
849
+
850
+ <!-- Hiding pinterest button
851
+ <div class="network" id="pinterest_btn">
852
+ <p>Pin it share</p>
853
+ <div class="pin-it"><a href="//pinterest.com/pin/create/button/?url=http%3A%2F%2Fwww.jamieoliver.com%2F&amp;media=http%3A%2F%2Fwww.jamieoliver.com%2F_beta%2Fimages%2Fheader%2Flogo.gif&amp;description=Jamie%20Oliver" data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pin_it_button.png" /></a></div>
854
+ <script type="text/javascript" src="//assets.pinterest.com/js/pinit.js"></script>
855
+ </div>
856
+ -->
857
+
858
+ <div class="network">
859
+ <a href="#">
860
+ <p>Google+ share</p>
861
+ <div style="margin: 10px 2px;">
862
+ <div class="g-plusone" data-size="tall" data-annotation="inline" data-width="130" data-href="https://plus.google.com/+JamieOliver/posts" onclick="_gaq.push(['_trackEvent', 'Click', 'Side bar google', '']);"></div>
863
+ </div>
864
+ <script type="text/javascript">
865
+ (function() {
866
+ var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
867
+ po.src = 'https://apis.google.com/js/plusone.js';
868
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
869
+ })();
870
+ </script>
871
+ </a>
872
+ </div>
873
+
874
+ </div>
875
+
876
+ </div>
877
+
878
+ </aside>
879
+ <!-- /Sidebar -->
880
+
881
+ </header>
882
+ <!-- DAN|ERIC: GLOBAL SEARCH AND MAIN MENU -->
883
+
884
+ <span class="hrecipe"> <span class="author" style="display: none;">Jamie Oliver</span>
885
+ <div id="content" class="recipes recipe_individual">
886
+
887
+ <div class="top">
888
+ <div class="cntr">
889
+ <ul class="breadcrumb menu ">
890
+ <li><a href="http://www.jamieoliver.com">Home</a> &gt;</li>
891
+ <li><a href="/recipes">Recipes</a> &gt;</li>
892
+ <li>Traditional Welsh cawl</li>
893
+ </ul>
894
+
895
+
896
+ <br class="cfix" />
897
+
898
+ </div>
899
+ </div>
900
+
901
+
902
+ <!-- Individual top -->
903
+ <section id="individual_top">
904
+ <div class="cntr">
905
+
906
+ <div id="share-bar-vt">
907
+ <ul class="r1-share">
908
+
909
+ <li class="social facebook">
910
+ <a class="pw-button-facebook"></a>
911
+ </li>
912
+
913
+ <li class="social twitter">
914
+ <a class="pw-button-twitter"></a>
915
+ </li>
916
+
917
+ <li class="social pinterest">
918
+ <a class="pw-button-pinterest"></a>
919
+ </li>
920
+
921
+ <li class="social googleplus">
922
+ <a class="pw-button-googleplus"></a>
923
+ </li>
924
+
925
+ <li class="social print">
926
+ <a href="/recipes/print/1405" target="_blank" class="button-print"></a>
927
+ </li>
928
+
929
+ </ul> </div>
930
+
931
+ <header class="mob_hidden_content">
932
+ <h1 class="mob_page_main_heading">Traditional Welsh cawl</h1>
933
+ </header>
934
+
935
+
936
+ <div class="recipe_image_main">
937
+ <p class="crop"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/1405_13_1418915813_lrg.jpg" alt="Traditional Welsh Cawl " class="photo" /></p>
938
+ </div>
939
+
940
+ <div class="content">
941
+ <div class="tabs_pills mob_hidden_content">
942
+ <ul class="nav nav-tabs" id="myTab" style="border: 0;">
943
+ <li class="active"><a href="#ingredients">Ingredients</a></li>
944
+ <li><a href="#method">Method</a></li>
945
+
946
+ </ul>
947
+
948
+ <div class="tab-content">
949
+ <div class="tab-pane active" id="ingredients">
950
+ <article class="ingredients">
951
+ <div class="ingredients_top"></div>
952
+ <div class="cntr">
953
+ <!-- Recipe info -->
954
+ <div class="recipe_meta">
955
+
956
+ <p>Serves
957
+ <span class="description yield">8</span> </p>
958
+
959
+
960
+
961
+
962
+ </div>
963
+ <!-- /Recipe info -->
964
+ <ul>
965
+
966
+ <li>
967
+ <p class="">
968
+ <span class=""> sea salt</span>
969
+ </p>
970
+ </li>
971
+
972
+ <li>
973
+ <p class="">
974
+ <span class=""> freshly ground black pepper</span>
975
+ </p>
976
+ </li>
977
+
978
+ <li>
979
+ <p class="">
980
+ <span class="">1 onion</span>
981
+ </p>
982
+ </li>
983
+
984
+ <li>
985
+ <p class="">
986
+ <span class="">1 kg lamb neck fillet, bone in, cut into 5cm chunks (ask your butcher to do this for you)</span>
987
+ </p>
988
+ </li>
989
+
990
+ <li>
991
+ <p class="">
992
+ <span class="">1 kg swede</span>
993
+ </p>
994
+ </li>
995
+
996
+ <li>
997
+ <p class="">
998
+ <span class="">2 carrots</span>
999
+ </p>
1000
+ </li>
1001
+
1002
+ <li>
1003
+ <p class="">
1004
+ <span class="">3 Maris Piper potatoes</span>
1005
+ </p>
1006
+ </li>
1007
+
1008
+ <li>
1009
+ <p class="">
1010
+ <span class="">2 parsnips</span>
1011
+ </p>
1012
+ </li>
1013
+
1014
+ <li>
1015
+ <p class="">
1016
+ <span class="">3 large leeks</span>
1017
+ </p>
1018
+ </li>
1019
+
1020
+
1021
+ </ul>
1022
+
1023
+ <!--div style="position: relative; top:15px;"><a class="foodity-static-widget" data-type="staticbutton" data-option="ocado" data-app-id="Whg45aWJrE" data-app-resource-id="jorecipe_1405" href="javascript:void(0)" style="background: url('http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_beta/recipes/images/ocado.gif'); color: #FFF; width: 240px; height: 23px; padding: 5px 0px 0px 10px; display: block; text-align: left; text-decoration: none;">BUY INGREDIENTS AT</a></div -->
1024
+
1025
+ <center><div style="position: relative; top:15px; "><div id="foodity-widget" class="foodity-widget" data-app-id="Whg45aWJrE" data-app-resource-id="jorecipe_1405" data-type="addtobasket"></div></div></center>
1026
+
1027
+
1028
+ </div>
1029
+ </article>
1030
+ </div>
1031
+ <div class="tab-pane" id="method">
1032
+ <article class="method">
1033
+ <p class="instructions">This traditional Welsh recipe was given to me by the five-time cawl-making world champion, Sue Jones – I can't argue with that! This one is left to chill overnight before serving, but if you want to let the flavours develop and mature, leave it in the fridge for up to three days. Now, over to Sue…<br /><br />
1034
+ <br /><br />
1035
+ Place 2 litres of water and 2 teaspoons of salt into a large pan. Place over a high heat and bring to the boil. <br /><br />
1036
+ <br /><br />
1037
+ Peel and add the whole onion and the lamb. Bring to the boil, then use a spoon to skim away the scum from the surface. Simmer for a further 10 to 15 minutes, or until cooked through. Using a slotted spoon, remove the meat from the pan and leave to cool. Strip the meat from the bone, then return the meat to the pan. <br /><br />
1038
+ <br /><br />
1039
+ Peel and cut the swede into 1cm chunks. Add to the pan and bring to the boil, then simmer for 15 to 20 minutes, or until the swede is tender. <br /><br />
1040
+ <br /><br />
1041
+ Peel the carrots and slice at a slight angle into 1cm chunks, then add to the pan. Bring to the boil, then simmer for a further 15 to 20 minutes with the lid on, or until tender. Meanwhile, peel the potatoes and cut into quarters so they're all roughly the same size. Once the carrot has softened, add the potatoes to the pan and repeat the process until tender. <br /><br />
1042
+ <br /><br />
1043
+ Peel the parsnips, strip and discard the outer leaves from the leeks, then cut into 1cm slices. Add the parsnips and most of the leeks to the pan. Bring to the boil, then simmer for 10 minutes with the lid on, or until tender. Taste and season, then add the raw leeks. Place the lid on top, then pop in the fridge to chill overnight (or for up to 3 days for even tastier results).<br /><br />
1044
+ <br /><br />
1045
+ When you're ready to serve, gently simmer the cawl until warm. Ladle into serving bowls, then serve with lots of black pepper, a wedge of mature Caerphilly cheese and a slice of bread and butter. </p>
1046
+ </article>
1047
+ </div>
1048
+
1049
+ </div>
1050
+
1051
+ <script>
1052
+ $(function () {
1053
+ /* $('#myTab a:last').tab('show');
1054
+ console.log($('#myTab a:last'));*/
1055
+
1056
+ $('#myTab a').click(function (e) {
1057
+ e.preventDefault();
1058
+ $(this).tab('show');
1059
+ })
1060
+ })
1061
+ </script>
1062
+
1063
+ <article class="nutritional_info_menu">
1064
+ <h4 class="ui_buttons-ui_max_btn"><span class="pvc_text_link">Nutritional Information</span></h4>
1065
+ <nav class="dropDown_info">
1066
+ <article class="recipe_nutrition">
1067
+ Amount per serving:
1068
+ <div itemscope itemtype="http://schema.org/NutritionInformation">
1069
+ <ul>
1070
+ <li class="category">
1071
+ <span class="type">Calories</span>
1072
+ <span class="value" itemprop="calories"><u>374</u></span>
1073
+ <span itemprop="calories" class="value">19%</span>
1074
+ </li>
1075
+ <li>
1076
+ <span class="type">Carbs</span>
1077
+ <span class="value" itemprop="carbohydrateContent"><u>25g</u></span>
1078
+ <span itemprop="carbohydrateContent" class="value">10%</span>
1079
+ </li>
1080
+ <li>
1081
+ <span class="type">Sugar</span>
1082
+ <span class="value" itemprop="sugarContent"><u>12.1g</u></span>
1083
+ <span itemprop="sugarContent" class="value">13%</span>
1084
+ </li>
1085
+ <li>
1086
+ <span class="type">Fat</span>
1087
+ <span class="value" itemprop="fatContent"><u>18.6g</u></span>
1088
+ <span itemprop="fatContent" class="value">27%</span>
1089
+ </li>
1090
+ <li>
1091
+ <span class="type">Saturates</span>
1092
+ <span class="value" itemprop="saturatedFatContent"><u>8.1g</u></span>
1093
+ <span itemprop="carbohydrateContent" class="value">41%</span>
1094
+ </li>
1095
+ <li class="last">
1096
+ <span class="type">Protein</span>
1097
+ <span class="value" itemprop="proteinContent"><u>28g</u></span>
1098
+ <span itemprop="proteinContent" class="value">62%</span>
1099
+ </li>
1100
+ </ul>
1101
+ Of an adult's reference intake
1102
+
1103
+ </div>
1104
+ <div class="clearfix"></div>
1105
+ <article class="nutriton_button">
1106
+ <center><a href="http://www.jamieoliver.com/healthy-living-tips/" target="_blank" id="sticker_mob" ></a></center>
1107
+ </article>
1108
+ </article>
1109
+ <div class="clearfix"></div>
1110
+ </nav>
1111
+ </article>
1112
+
1113
+ <article class="related_book">
1114
+
1115
+ <div class="">
1116
+ <p>
1117
+
1118
+ <strong><span class="source_title">Jamie and Jimmy's Friday Night Feast Recipe</span></strong>
1119
+ </p>
1120
+ <br> </div>
1121
+ <img src="/_int/rdb2/upload/source/632.jpg" alt="" />
1122
+
1123
+ </article>
1124
+
1125
+
1126
+
1127
+
1128
+ <!-- Social bookmarks -->
1129
+ <section id="share-bar-hz">
1130
+ <div class="cntr">
1131
+ <ul class="r1-share">
1132
+
1133
+ <li class="social facebook">
1134
+ <a class="pw-button-facebook"></a>
1135
+ </li>
1136
+
1137
+ <li class="social twitter">
1138
+ <a class="pw-button-twitter"></a>
1139
+ </li>
1140
+
1141
+ <li class="social pinterest">
1142
+ <a class="pw-button-pinterest"></a>
1143
+ </li>
1144
+
1145
+ <li class="social googleplus">
1146
+ <a class="pw-button-googleplus"></a>
1147
+ </li>
1148
+
1149
+ <li class="social print">
1150
+ <a href="/recipes/print/1405" target="_blank" class="button-print"></a>
1151
+ </li>
1152
+
1153
+ </ul> </div>
1154
+ </section>
1155
+ <!-- /Social bookmarks -->
1156
+
1157
+
1158
+
1159
+ <!-- Related recipes -->
1160
+ <section class="grid grid5 related_recipes_promo" id="event_promo">
1161
+ <div class="cntr">
1162
+ <header class="clearfix full-width">
1163
+ <h2>Related recipes</h2>
1164
+ </header>
1165
+
1166
+ <article class="col panel">
1167
+ <div class="trigger">
1168
+ <a href="http://www.jamieoliver.com/recipes/chicken-recipes/chicken-chow-mein" sl-processed="1">
1169
+ <img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/126_1_1350895875_med.jpg" alt="">
1170
+ </a>
1171
+
1172
+ <div class="copy">
1173
+ <h3><a href="http://www.jamieoliver.com/recipes/chicken-recipes/chicken-chow-mein" sl-processed="1">Chicken chow mein </a></h3>
1174
+ <span class="tag"><a href="chicken-recipes/chicken-chow-mein" sl-processed="1">Chicken</a></span>
1175
+ </div>
1176
+ </div>
1177
+ </article>
1178
+
1179
+ <article class="col panel">
1180
+ <div class="trigger">
1181
+ <a href="http://www.jamieoliver.com/recipes/pork-recipes/quick-time-sausage-cassoulet" sl-processed="1">
1182
+ <img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/434_1_1350905132_med.jpg" alt="">
1183
+ </a>
1184
+
1185
+ <div class="copy">
1186
+ <h3><a href="http://www.jamieoliver.com/recipes/pork-recipes/quick-time-sausage-cassoulet" sl-processed="1">Quick-time sausage cassoulet</a></h3>
1187
+ <span class="tag"><a href="pork-recipes/quick-time-sausage-cassoulet" sl-processed="1">Pork</a></span>
1188
+ </div>
1189
+ </div>
1190
+ </article>
1191
+ <div class="more_video_btn" style="display: block;"><a href="/recipes" class="button" sl-processed="1">MORE RECIPES</a></div>
1192
+ </div>
1193
+ </section>
1194
+
1195
+ <!-- / Related recipes -->
1196
+
1197
+ <!-- Videos -->
1198
+ <section class="grid grid2" id="video_recipes">
1199
+ <div class="cntr">
1200
+
1201
+ <header class="clearfix full-width">
1202
+ <h2>Video recipes</h2>
1203
+ </header>
1204
+
1205
+ <article class="col panel">
1206
+ <div class="trigger triggerOff">
1207
+ <div class="tools-holder" style="display: none;">
1208
+ <div class="blue-arrow"></div>
1209
+ <div class="tools"></div>
1210
+ </div>
1211
+ <div class="trigger-image-holder">
1212
+ <a href="/videos/moroccan-lamb-burgers-with-sortedfood" sl-processed="1"><img src="http://i.ytimg.com/vi/WkPEFFGhBFQ/0.jpg" alt=""></a>
1213
+ <div class="blue-arrow-off" style="display: block;"></div>
1214
+ </div>
1215
+ </div>
1216
+
1217
+ <h3><a href="/videos/moroccan-lamb-burgers-with-sortedfood" sl-processed="1">Moroccan Lamb Burgers with Sorted&hellip;</a></h3>
1218
+ </article>
1219
+
1220
+ <article class="col panel">
1221
+ <div class="trigger triggerOff">
1222
+ <div class="tools-holder" style="display: none;">
1223
+ <div class="blue-arrow"></div>
1224
+ <div class="tools"></div>
1225
+ </div>
1226
+ <div class="trigger-image-holder">
1227
+ <a href="/videos/moroccan-lamb-burgers-with-sortedfood" sl-processed="1"><img src="http://i.ytimg.com/vi/F3vjvrR9khE/0.jpg" alt=""></a>
1228
+ <div class="blue-arrow-off" style="display: block;"></div>
1229
+ </div>
1230
+ </div>
1231
+
1232
+ <h3><a href="/videos/moroccan-lamb-burgers-with-sortedfood"" sl-processed="1">Jamie's Great Britain - how to bu&hellip;</a></h3>
1233
+ </article>
1234
+
1235
+ </div>
1236
+ <div class="more_video_btn" style="display: block;"><a href="/videos" class="button" sl-processed="1">MORE VIDEOS</a></div>
1237
+ </section>
1238
+ <!-- / Videos -->
1239
+
1240
+ <section id="recipes_section_dropdowns">
1241
+
1242
+ <article class="col top_keyword_menu">
1243
+ <h4 class="ui_buttons-ui_max_btn"><span>Top keyword searches</span></h4>
1244
+ <nav class="dropDown_info">
1245
+ <ul>
1246
+ <li><h5><a href="/recipes/search/?q=dessert">dessert</a></h5></li><li><h5><a href="/recipes/search/?q=chicken">chicken</a></h5></li><li><h5><a href="/recipes/search/?q=vegetarian">vegetarian</a></h5></li><li><h5><a href="/recipes/search/?q=jam">jam</a></h5></li><li><h5><a href="/recipes/search/?q=salad">salad</a></h5></li><li><h5><a href="/recipes/search/?q=potato">potato</a></h5></li> </ul>
1247
+ </nav>
1248
+ </article>
1249
+
1250
+ <article class="col popular_video_cats_menu">
1251
+ <h4 class="ui_buttons-ui_max_btn"><span>Popular recipes this week</span></h4>
1252
+ <nav class="dropDown_info">
1253
+ <ul>
1254
+ <li><h5><a href="/recipes/uncategorised-recipes/pizza-dough">Pizza dough </a></h5></li><li><h5><a href="/recipes/beef-recipes/perfect-roast-beef">Perfect roast beef</a></h5></li><li><h5><a href="/recipes/chicken-recipes/perfect-roast-chicken">Perfect roast chicken</a></h5></li><li><h5><a href="/recipes/pork-recipes/6-hour-slow-roasted-pork-shoulder">6-hour slow-roasted pork shoulder</a></h5></li><li><h5><a href="/recipes/beef-recipes/good-old-chilli-con-carne">Good old chilli con carne</a></h5></li><li><h5><a href="/recipes/lamb-recipes/best-roast-leg-of-lamb">Best roast leg of lamb</a></h5></li> </ul>
1255
+ </nav>
1256
+ </article>
1257
+
1258
+ <article class="col popular_recipe_menu">
1259
+ <h4 class="ui_buttons-ui_max_btn"><span>Popular recipe categories</span></h4>
1260
+ <nav class="dropDown_info">
1261
+ <ul>
1262
+ <li><h5><a href="/recipes/category/books/jamie-s-15-minute-meals">Jamie's 15-Minute Meals</a></h5></li><li><h5><a href="/recipes/chicken-recipes">Chicken</a></h5></li><li><h5><a href="/recipes/category/course/mains">Mains</a></h5></li><li><h5><a href="/recipes/fish-recipes">Fish</a></h5></li><li><h5><a href="/recipes/category/dishtype/salad">Salad</a></h5></li><li><h5><a href="/recipes/beef-recipes">Beef</a></h5></li> </ul>
1263
+ </nav>
1264
+ </article>
1265
+
1266
+ <div class="mob_video_search">
1267
+ <form action="/recipes/search/" method="get" id="videos_search">
1268
+ <input type="text" name="q" id="search" placeholder="Search for recipes" class="input_text input_text_recipe">
1269
+ <input type="submit" class="input_submit" value="Search">
1270
+ </form>
1271
+ </div>
1272
+
1273
+ </section>
1274
+
1275
+ </div>
1276
+
1277
+ <div class="hide_from_screen">
1278
+
1279
+ <header>
1280
+
1281
+ <h1 class="fn">Traditional Welsh cawl</h1> <h2>Hearty lamb soup</h2> <div class="underline">
1282
+ <img width="439" height="6" src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_beta/images/global/decorative-hr-shot-2.png" alt="" class="bottom-dcorative-hr" />
1283
+ </div>
1284
+ </header>
1285
+
1286
+ <div class="community">
1287
+
1288
+ <a href="/recipes/category/course/mains"
1289
+
1290
+ class="linked_category">More <span>Mains</span> recipes &gt;</a>
1291
+
1292
+ <div class="cooked_count">
1293
+ <span>0</span> foodies cooked this
1294
+ </div>
1295
+
1296
+
1297
+
1298
+ </div>
1299
+
1300
+
1301
+ <article class="recipe_quote">
1302
+ <blockquote>
1303
+ <img src="//jamieoliverprod.s3.amazonaws.com/_beta/recipes/images/quote_left.jpg" alt="" /> The national dish of Wales, cawl is super-comforting, warming and delicious <img src="//jamieoliverprod.s3.amazonaws.com/_beta/recipes/images/quote_right.jpg" alt="" />
1304
+ </blockquote>
1305
+ </article>
1306
+
1307
+
1308
+ <article><center>
1309
+ <table>
1310
+ <tr>
1311
+ <td valign="top">
1312
+ <div style="background: url('//jamieoliverprod.s3.amazonaws.com/_beta/recipes/images/serves.gif') repeat-x; width: 82px; /*height: 20px;*/ padding: 82px 20px 0px 0px;">
1313
+ Serves 8 </div>
1314
+ </td>
1315
+ <td valign="top">
1316
+ <div style="background: url('//jamieoliverprod.s3.amazonaws.com/_beta/recipes/images/time.gif') repeat-x; width: 82px; /*height: 20px;*/ padding: 82px 20px 0px 0px;">
1317
+ 2h (plus chilling) </div>
1318
+ </td>
1319
+ <td valign="top">
1320
+ <div style="background: url('//jamieoliverprod.s3.amazonaws.com/_beta/recipes/images/diff-1.gif') repeat-x; width: 82px; /*height: 20px;*/ padding: 82px 20px 0px 0px;">
1321
+ Super easy </div>
1322
+ </td>
1323
+ </tr>
1324
+ </table>
1325
+ </center></article>
1326
+
1327
+ <div id="related_recipe_carousel">
1328
+
1329
+ <header>
1330
+
1331
+
1332
+
1333
+ <h3>More Lamb Recipes</h3>
1334
+
1335
+
1336
+ <div class="underline">
1337
+ <img width="439" height="6" class="bottom-dcorative-hr" alt="" src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_beta/images/global/decorative-hr-shot-2.png">
1338
+ </div>
1339
+
1340
+ </header>
1341
+
1342
+
1343
+ <div id="recipe_slider" class="carousel active">
1344
+
1345
+ <div class="carousel-inner">
1346
+
1347
+ <div class="item panel panel1 active">
1348
+ <div class="col col1">
1349
+
1350
+
1351
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/quick-lamb-tagine-with-pan-fried-aubergine-cumin-crunch"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/853_1_1420714319_med.jpg" alt="" /></a></div>
1352
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/quick-lamb-tagine-with-pan-fried-aubergine-cumin-crunch">Quick lamb tagine wi...</a></div>
1353
+
1354
+
1355
+ </div>
1356
+ <div class="col col2">
1357
+
1358
+
1359
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/roast-rack-of-lamb-with-crushed-potatoes"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/454_1_1350905974_med.jpg" alt="" /></a></div>
1360
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/roast-rack-of-lamb-with-crushed-potatoes">Roast rack of lamb w...</a></div>
1361
+
1362
+
1363
+ </div>
1364
+ <div class="col col3">
1365
+
1366
+
1367
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/empire-roast-lamb"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/1053_1_1391604722_med.jpg" alt="" /></a></div>
1368
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/empire-roast-lamb">Empire roast lamb...</a></div>
1369
+
1370
+
1371
+ </div>
1372
+ </div><div class="item panel panel1"> <div class="col col1">
1373
+
1374
+
1375
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/spring-lamb-vegetable-platter-mint-sauce-chianti-gravy-chocolate-fondue"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/534_1_1349701859_med.jpg" alt="" /></a></div>
1376
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/spring-lamb-vegetable-platter-mint-sauce-chianti-gravy-chocolate-fondue">Spring lamb, vegetab...</a></div>
1377
+
1378
+
1379
+ </div>
1380
+ <div class="col col2">
1381
+
1382
+
1383
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/grilled-moroccan-lamb-chops"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/806_1_1350297392_med.jpg" alt="" /></a></div>
1384
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/grilled-moroccan-lamb-chops">Grilled Moroccan lam...</a></div>
1385
+
1386
+
1387
+ </div>
1388
+ <div class="col col3">
1389
+
1390
+
1391
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/scotch-broth-with-winter-root-veg"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/732_1_1350906785_med.jpg" alt="" /></a></div>
1392
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/scotch-broth-with-winter-root-veg">Scotch broth with wi...</a></div>
1393
+
1394
+
1395
+ </div>
1396
+ </div><div class="item panel panel2"> <div class="col col1">
1397
+
1398
+
1399
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/grilled-lamb-chops-with-fattoush"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/1326_2_1413558592_med.jpg" alt="" /></a></div>
1400
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/grilled-lamb-chops-with-fattoush">Grilled lamb chops w...</a></div>
1401
+
1402
+
1403
+ </div>
1404
+ <div class="col col2">
1405
+
1406
+
1407
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/spiced-lamb-lollipops-with-korma-sauce-and-toasted-almonds"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/685_1_1350908014_med.jpg" alt="" /></a></div>
1408
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/spiced-lamb-lollipops-with-korma-sauce-and-toasted-almonds">Spiced lamb lollipop...</a></div>
1409
+
1410
+
1411
+ </div>
1412
+ <div class="col col3">
1413
+
1414
+
1415
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/slow-cooked-shoulder-of-lamb-with-roasted-vegetables"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/501_1_1350907324_med.jpg" alt="" /></a></div>
1416
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/slow-cooked-shoulder-of-lamb-with-roasted-vegetables">Slow-cooked shoulder...</a></div>
1417
+
1418
+
1419
+ </div>
1420
+ </div><div class="item panel panel3"> <div class="col col1">
1421
+
1422
+
1423
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/sizzling-lamb-chops-scottadito"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/942_13_1375799468_med.jpg" alt="" /></a></div>
1424
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/sizzling-lamb-chops-scottadito">Sizzling lamb chops ...</a></div>
1425
+
1426
+
1427
+ </div>
1428
+ <div class="col col2">
1429
+
1430
+
1431
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/dark-sticky-stew"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/179_1_1350897338_med.jpg" alt="" /></a></div>
1432
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/dark-sticky-stew">Dark, sticky stew...</a></div>
1433
+
1434
+
1435
+ </div>
1436
+ <div class="col col3">
1437
+
1438
+
1439
+ <div class="carousel_img"><a href="/recipes/lamb-recipes/easy-essex-haggis-neeps-tatties-shepherd-s-pie-stylie"><img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/878_1_1358935523_med.jpg" alt="" /></a></div>
1440
+ <div class="carousel_title"><a href="/recipes/lamb-recipes/easy-essex-haggis-neeps-tatties-shepherd-s-pie-stylie">Easy Essex haggis ne...</a></div>
1441
+
1442
+
1443
+ </div>
1444
+ </div>
1445
+
1446
+ </div>
1447
+
1448
+ </div>
1449
+
1450
+ <div id="carousel-nav">
1451
+ <a data-slide="prev" href="#related_recipe_carousel" class="carousel-control left"><span style="opacity: 0;"></span></a>
1452
+ <a data-slide="next" href="#related_recipe_carousel" class="carousel-control right"><span style="opacity: 0;"></span></a>
1453
+ </div>
1454
+
1455
+ </div>
1456
+
1457
+ </div>
1458
+
1459
+ </div>
1460
+
1461
+ </div>
1462
+ </section>
1463
+ <!-- /Individual top -->
1464
+
1465
+ <!-- Social bookmarks -->
1466
+ <span class="hide_from_screen">
1467
+ <section id="share-bar-hz">
1468
+ <div class="cntr">
1469
+ <ul class="r1-share">
1470
+
1471
+ <li class="social facebook">
1472
+ <a class="pw-button-facebook"></a>
1473
+ </li>
1474
+
1475
+ <li class="social twitter">
1476
+ <a class="pw-button-twitter"></a>
1477
+ </li>
1478
+
1479
+ <li class="social pinterest">
1480
+ <a class="pw-button-pinterest"></a>
1481
+ </li>
1482
+
1483
+ <li class="social googleplus">
1484
+ <a class="pw-button-googleplus"></a>
1485
+ </li>
1486
+
1487
+ <li class="social print">
1488
+ <a href="/recipes/print/1405" target="_blank" class="button-print"></a>
1489
+ </li>
1490
+
1491
+ </ul> </div>
1492
+ </section>
1493
+ </span>
1494
+ <!-- /Social bookmarks -->
1495
+
1496
+ <!-- Individual bottom -->
1497
+ <section id="individual_bottom" class="hide_from_screen">
1498
+ <div class="cntr">
1499
+
1500
+ <aside>
1501
+
1502
+ <article class="ingredients">
1503
+ <div class="ingredients_top"></div>
1504
+
1505
+ <div class="cntr">
1506
+
1507
+ <!-- Recipe info -->
1508
+ <div class="recipe_meta">
1509
+ </div>
1510
+ <!-- /Recipe info -->
1511
+
1512
+ <div class="title">Ingredients</div>
1513
+
1514
+ <!--div style="margin: 10px 0px;"><a class="foodity-static-widget" data-type="staticbutton" data-option="ocado" data-app-id="Whg45aWJrE" data-app-resource-id="jorecipe_1405" href="javascript:void(0)" style="background: url('http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_beta/recipes/images/ocado.gif'); color: #FFF; width: 240px; height: 23px; padding: 5px 0px 0px 10px; display: block; text-align: left; text-decoration: none;">BUY INGREDIENTS AT</a></div -->
1515
+ <div style="margin: 10px 0px; left: -40px; position: relative;" onclick="_gaq.push(['_trackEvent', 'Click', 'add_to_basket', '']);"><div class="foodity-widget" data-app-id="Whg45aWJrE" data-app-resource-id="jorecipe_1405" data-type="addtobasket"></div></div>
1516
+
1517
+
1518
+ <ul>
1519
+
1520
+ <li>
1521
+ <p class="">
1522
+ <span class=""> sea salt</span>
1523
+ </p>
1524
+ </li>
1525
+
1526
+ <li>
1527
+ <p class="">
1528
+ <span class=""> freshly ground black pepper</span>
1529
+ </p>
1530
+ </li>
1531
+
1532
+ <li>
1533
+ <p class="">
1534
+ <span class="">1 onion</span>
1535
+ </p>
1536
+ </li>
1537
+
1538
+ <li>
1539
+ <p class="">
1540
+ <span class="">1 kg lamb neck fillet, bone in, cut into 5cm chunks (ask your butcher to do this for you)</span>
1541
+ </p>
1542
+ </li>
1543
+
1544
+ <li>
1545
+ <p class="">
1546
+ <span class="">1 kg swede</span>
1547
+ </p>
1548
+ </li>
1549
+
1550
+ <li>
1551
+ <p class="">
1552
+ <span class="">2 carrots</span>
1553
+ </p>
1554
+ </li>
1555
+
1556
+ <li>
1557
+ <p class="">
1558
+ <span class="">3 Maris Piper potatoes</span>
1559
+ </p>
1560
+ </li>
1561
+
1562
+ <li>
1563
+ <p class="">
1564
+ <span class="">2 parsnips</span>
1565
+ </p>
1566
+ </li>
1567
+
1568
+ <li>
1569
+ <p class="">
1570
+ <span class="">3 large leeks</span>
1571
+ </p>
1572
+ </li>
1573
+ </ul>
1574
+
1575
+
1576
+
1577
+ </div>
1578
+
1579
+ <div class="ingredients_bot"></div>
1580
+
1581
+ </article>
1582
+
1583
+
1584
+
1585
+ <div class="mpu">
1586
+ <a title="Win a meal" target="_blank" href="http://www.myoffers.co.uk/lifestyle-competitions/win-dinner-for-four-at-jamies-italian-9914-5?src=223940&cid=2288&promoid=184" ><img alt="Win a dinner for 4 at Jamie's Italian" src="/_beta/recipes/images/300x120_jamies_italian.jpg" /></a>
1587
+ </div>
1588
+
1589
+ <div class="mpu">
1590
+ <div id='div-gpt-ad-1355082082358-1' style='width:300px; height:250px;'>
1591
+ <script type='text/javascript'>
1592
+ googletag.cmd.push(function() { googletag.display('div-gpt-ad-1355082082358-1'); });
1593
+ </script>
1594
+ </div>
1595
+ </div>
1596
+
1597
+ </aside>
1598
+
1599
+
1600
+ <article class="related_book">
1601
+ <img src="/_int/rdb2/upload/source/632.jpg" alt="" />
1602
+
1603
+
1604
+
1605
+
1606
+ <div class="source_wrapper">
1607
+ <p>
1608
+ <!-- This recipe is from: <br />-->
1609
+ <strong><span class="source_title">Jamie and Jimmy's Friday Night Feast Recipe</span></strong>
1610
+ </p>
1611
+
1612
+ <br><br>&nbsp; </div>
1613
+
1614
+ </article>
1615
+
1616
+ <article class="method">
1617
+
1618
+
1619
+
1620
+
1621
+ <div class="title">Method</div>
1622
+
1623
+ <p class="instructions">
1624
+ This traditional Welsh recipe was given to me by the five-time cawl-making world champion, Sue Jones – I can't argue with that! This one is left to chill overnight before serving, but if you want to let the flavours develop and mature, leave it in the fridge for up to three days. Now, over to Sue…<br />
1625
+ <br />
1626
+ Place 2 litres of water and 2 teaspoons of salt into a large pan. Place over a high heat and bring to the boil. <br />
1627
+ <br />
1628
+ Peel and add the whole onion and the lamb. Bring to the boil, then use a spoon to skim away the scum from the surface. Simmer for a further 10 to 15 minutes, or until cooked through. Using a slotted spoon, remove the meat from the pan and leave to cool. Strip the meat from the bone, then return the meat to the pan. <br />
1629
+ <br />
1630
+ Peel and cut the swede into 1cm chunks. Add to the pan and bring to the boil, then simmer for 15 to 20 minutes, or until the swede is tender. <br />
1631
+ <br />
1632
+ Peel the carrots and slice at a slight angle into 1cm chunks, then add to the pan. Bring to the boil, then simmer for a further 15 to 20 minutes with the lid on, or until tender. Meanwhile, peel the potatoes and cut into quarters so they're all roughly the same size. Once the carrot has softened, add the potatoes to the pan and repeat the process until tender. <br />
1633
+ <br />
1634
+ Peel the parsnips, strip and discard the outer leaves from the leeks, then cut into 1cm slices. Add the parsnips and most of the leeks to the pan. Bring to the boil, then simmer for 10 minutes with the lid on, or until tender. Taste and season, then add the raw leeks. Place the lid on top, then pop in the fridge to chill overnight (or for up to 3 days for even tastier results).<br />
1635
+ <br />
1636
+ When you're ready to serve, gently simmer the cawl until warm. Ladle into serving bowls, then serve with lots of black pepper, a wedge of mature Caerphilly cheese and a slice of bread and butter. </p>
1637
+
1638
+
1639
+ <article class="recipe_nutrition hide_from_screen">
1640
+
1641
+ <h6><strong>Nutritional Information</strong>
1642
+
1643
+ Amount per
1644
+ serving:
1645
+ </h6>
1646
+
1647
+ <div itemscope itemtype="http://schema.org/NutritionInformation">
1648
+ <div id="calories-desc" class="nutritional-desc">
1649
+
1650
+ <h3>Calories</h3>
1651
+ Calories are just a unit of energy. If you eat more than you use you can gain weight, or lose it if you don't eat enough. How much you need depends on your weight, gender and how active you are, but it's around 2,000 a day.
1652
+ </div>
1653
+ <div id="carbs-desc" class="nutritional-desc">
1654
+ <h3>Carbs</h3>
1655
+ Carbs are a great source of energy and, excluding foods such as potatoes, are made from grains - like bread, pasta and cereal. We all need carbs, but try to make them all wholegrain by sticking to brown bread, rice and pasta - they are much more nutritious.
1656
+ </div>
1657
+ <div id="sugar-desc" class="nutritional-desc">
1658
+ <h3>Sugar</h3>
1659
+ We all deserve a treat sometimes, but try to limit your sugar intake. Most of your sugar should come from raw fruit and milk, because they give us lots of nutrients too. Always check food labels so you know how much sugar you're eating.
1660
+ </div>
1661
+ <div id="fat-desc" class="nutritional-desc">
1662
+ <h3>Fat</h3>
1663
+ We all need to eat a small amount of fat because it protects our organs and helps us grow. But we need to be careful about how much fat we eat and what kinds of fat, because in higher levels it's associated with weight gain, diabetes, cancer and heart disease.
1664
+ </div>
1665
+ <div id="saturates-desc" class="nutritional-desc">
1666
+ <h3>Saturates</h3>
1667
+ Saturated or "bad fats" are in beef, pork, chicken skin, butter, cream and cheese. Too much can be bad for our heart and cholesterol levels, but unsaturated or "good fats" in fish, nuts, avocados and some oils can help keep our hearts healthy if eaten in moderation.
1668
+ </div>
1669
+ <div id="protein-desc" class="nutritional-desc">
1670
+ <h3>Protein</h3>
1671
+
1672
+ Protein helps our muscles to grow and repair, as well as providing you with essential amino acids. When it comes to protein, try to eat leaner sources such as chicken and fish or non-meat sources such as eggs, dairy, beans, nuts, seeds, tofu and pulses.
1673
+ </div>
1674
+
1675
+
1676
+
1677
+ <ul>
1678
+ <li id="calories" class="category nutrition-arrow">
1679
+ <span class="type">Calories</span>
1680
+ <span class="value" itemprop="calories">374</span>
1681
+ <div class="arrow"></div>
1682
+ <span itemprop="calories" class="value">19%</span>
1683
+ </li>
1684
+ <li id="carbs" class="nutrition-arrow">
1685
+ <span class="type">Carbs</span>
1686
+ <span class="value" itemprop="carbohydrateContent">25g</span>
1687
+ <div class="arrow"></div>
1688
+ <span itemprop="carbohydrateContent" class="value">10%</span>
1689
+ </li>
1690
+ <li id="sugar" class="nutrition-arrow">
1691
+ <span class="type">Sugar</span>
1692
+ <span class="value" itemprop="sugarContent">12.1g</span>
1693
+ <span itemprop="sugarContent" class="value">13%</span>
1694
+ <div class="arrow"></div>
1695
+ </li>
1696
+ <li id="fat" class="nutrition-arrow">
1697
+ <span class="type">Fat</span>
1698
+ <span class="value" itemprop="fatContent">18.6g</span>
1699
+ <span itemprop="fatContent" class="value">27%</span>
1700
+
1701
+ <div class="arrow"></div>
1702
+ </li>
1703
+ <li id="saturates" class="nutrition-arrow">
1704
+ <span class="type">Saturates</span>
1705
+ <span class="value" itemprop="saturatedFatContent">8.1g</span>
1706
+ <span itemprop="carbohydrateContent" class="value">41%</span>
1707
+
1708
+ <div class="arrow"></div>
1709
+ </li>
1710
+ <li id="protein" class="last nutrition-arrow">
1711
+ <span class="type">Protein</span>
1712
+ <span class="value" itemprop="proteinContent">28g</span>
1713
+ <span itemprop="proteinContent" class="value">62%</span>
1714
+ <div class="arrow"></div>
1715
+ </li>
1716
+ </ul>
1717
+ </div>
1718
+
1719
+ <h6>Of an adult's reference intake</h6>
1720
+ <article class="nutriton_button">
1721
+ <a href="http://www.jamieoliver.com/healthy-living-tips/" target="_blank" id="sticker" ></a>
1722
+ </article>
1723
+ </article>
1724
+
1725
+ <div class="category_tags">
1726
+ <h3>Related recipes:</h3>
1727
+ <ul>
1728
+ <li><a href="/recipes/lamb-recipes" rel="tag">lamb</a></li><li><a href="/recipes/search/?q=soup" rel="tag">soup</a></li><li><a href="/recipes/search/?q=vegetable soup" rel="tag">vegetable soup</a></li> </ul>
1729
+ </div>
1730
+
1731
+
1732
+
1733
+ <ul class="clearfix" id="related_recipes">
1734
+ <li class="panel row1 shop_item">
1735
+ <div class="title">
1736
+ <a class="related_title" href="/recipes/fruit-recipes/gluten-free-mince-pies">
1737
+ <h3>Gluten-free mince pies</h3>
1738
+ </a>
1739
+ </div>
1740
+
1741
+ <img class="related_img" alt="" src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/1272_30_1405688751_med.jpg">
1742
+
1743
+ </li>
1744
+ <li class="panel row2 shop_item">
1745
+ <div class="title">
1746
+ <a class="related_title" href="/recipes/chicken-recipes/chicken-chow-mein">
1747
+ <h3>Chicken chow mein </h3>
1748
+ </a>
1749
+ </div>
1750
+ <img class="related_img" alt="" src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/126_1_1350895875_med.jpg">
1751
+ </li>
1752
+ <li class="panel row1 video nomargin">
1753
+ <div class="trigger triggerOff">
1754
+ <div style="display: none;" class="tools-holder">
1755
+ <div class="blue-arrow"></div>
1756
+ <div class="tools">
1757
+ <a href="#" class="network">network</a>
1758
+ <a href="#" class="tick">tick</a>
1759
+ <a href="#" class="plus">add</a>
1760
+ </div>
1761
+ </div>
1762
+ <div class="trigger-image-holder">
1763
+ <a href="/videos/moroccan-lamb-burgers-with-sortedfood"><img alt="" src="http://i.ytimg.com/vi/WkPEFFGhBFQ/0.jpg"></a>
1764
+ <div style="display: block;" class="blue-arrow-off"></div>
1765
+ </div>
1766
+ </div>
1767
+ <h3><a href="/videos/moroccan-lamb-burgers-with-sortedfood">Moroccan Lamb Burgers with Sorted&hellip;</a></h3>
1768
+ </li>
1769
+
1770
+ <li class="panel row2 shop_item">
1771
+ <div class="title">
1772
+ <a class="related_title" href="/recipes/vegetables-recipes/aubergine-lasagne">
1773
+ <h3>Aubergine lasagne</h3>
1774
+ </a>
1775
+ </div>
1776
+ <img class="related_img" alt="" src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/757_1_1350663691_med.jpg">
1777
+ </li>
1778
+ <li class="panel row2 shop_item">
1779
+ <div class="title">
1780
+ <a class="related_title" href="/recipes/pork-recipes/quick-time-sausage-cassoulet">
1781
+ <h3>Quick-time sausage cassoulet</h3>
1782
+ </a>
1783
+ </div>
1784
+ <img class="related_img" alt="" src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_int/rdb2/upload/434_1_1350905132_med.jpg">
1785
+ </li>
1786
+ <li class="panel row2 video nomargin">
1787
+ <div class="trigger triggerOff">
1788
+ <div style="display: none;" class="tools-holder">
1789
+ <div class="blue-arrow"></div>
1790
+ <div class="tools">
1791
+ <a href="#" class="network">network</a>
1792
+ <a href="#" class="tick">tick</a>
1793
+ <a href="#" class="plus">add</a>
1794
+ </div>
1795
+ </div>
1796
+ <div class="trigger-image-holder">
1797
+ <a href="/videos/jamie-s-great-britain-how-to-butcher-a-lamb"><img alt="" src="http://i.ytimg.com/vi/F3vjvrR9khE/0.jpg"></a>
1798
+ <div style="display: block;" class="blue-arrow-off"></div>
1799
+ </div>
1800
+ </div>
1801
+ <h3><a href="/videos/jamie-s-great-britain-how-to-butcher-a-lamb">Jamie's Great Britain - how to bu&hellip;</a></h3>
1802
+ </li>
1803
+ </ul>
1804
+
1805
+ </article>
1806
+
1807
+ <!-- Banner -->
1808
+ <div class="banner2">
1809
+ <div class="banner-cntr">
1810
+ <!-- JamieOliver/Recipes/IndividualRecipes -->
1811
+ <script type='text/javascript'>
1812
+ footerAd();
1813
+ </script>
1814
+ </div>
1815
+ </div>
1816
+ <!-- /Banner -->
1817
+
1818
+ <div id='div-gpt-ad-1355082082358-0-oop' style='width:728px; height:90px;'>
1819
+ <script type='text/javascript'>
1820
+ googletag.cmd.push(function() { googletag.display('div-gpt-ad-1355082082358-0-oop'); });
1821
+ </script>
1822
+ </div>
1823
+
1824
+ </div>
1825
+
1826
+ </section>
1827
+
1828
+ <section id="sust_popup">
1829
+ <div class="padding">
1830
+
1831
+ <!-- Initial form -->
1832
+ <div class="sust_entry">
1833
+ <h3>BUYING SUSTAINABLY SOURCED FISH</h3>
1834
+ <div class="close" title="Close" onclick="document.getElementById('sust_popup').style.display='none';"><span>Close</span></div>
1835
+ <p>
1836
+ Buying sustainably sourced fish means buying fish that has been caught without endangering the levels of fish stocks and with the protection of the environment in mind. Wild fish caught in areas where stocks are plentiful are sustainably sourced, as are farmed fish that are reared on farms proven to cause no harm to surrounding seas and shores.
1837
+ </p>
1838
+ <p>
1839
+ When buying either wild or farmed fish, ask whether it is sustainably sourced. If you're unable to obtain this information, don't be afraid to shop elsewhere – only by shopping sustainably can we be sure that the fantastic selection of fish we enjoy today will be around for future generations.
1840
+ </p>
1841
+ <p>
1842
+ For further information about sustainably sourced fish, please refer to the useful links below:
1843
+ </p>
1844
+ <p>
1845
+ Marine Stewardship Council<br />
1846
+ <a href="http://www.msc.org" target="_blank">http://www.msc.org/</a>
1847
+ </p>
1848
+ <p>
1849
+ Fish Online<br />
1850
+ <a href="http://www.fishonline.org" target="_blank">http://www.fishonline.org</a>
1851
+ </p>
1852
+ </div>
1853
+
1854
+ </div>
1855
+ </section>
1856
+
1857
+ <!-- Recipe comments -->
1858
+ <section class="grid grid2" id="recipe_comments">
1859
+ <div class="cntr">
1860
+ <a href="#recipe_comments" onclick="jQuery('#disqus_thread').toggle();" class="shComments">Show/hide comments</a>
1861
+ <div id="disqus_thread"><a></a><p></p></div>
1862
+ <script type="text/javascript">
1863
+ /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
1864
+ var disqus_shortname = 'jamieoliveronline'; // required: replace example with your forum shortname
1865
+
1866
+ /* * * DON'T EDIT BELOW THIS LINE * * */
1867
+ (function() {
1868
+ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
1869
+ dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
1870
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
1871
+ })();
1872
+ </script>
1873
+ <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
1874
+ <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
1875
+ </div>
1876
+ </section>
1877
+ <!-- /Recipe comments -->
1878
+
1879
+ <!-- Recipe footer -->
1880
+ <section class="grid grid2" id="recipe_bottom">
1881
+ <div class="cntr">
1882
+
1883
+ <article class="col col1 subfooter_nav">
1884
+ <h4>Top keyword searches</h4>
1885
+ <ul>
1886
+ <li><a href="/recipes/search/?q=dessert">dessert</a></li><li><a href="/recipes/search/?q=chicken">chicken</a></li><li><a href="/recipes/search/?q=vegetarian">vegetarian</a></li><li><a href="/recipes/search/?q=jam">jam</a></li><li><a href="/recipes/search/?q=salad">salad</a></li><li><a href="/recipes/search/?q=potato">potato</a></li> </ul>
1887
+ </article>
1888
+
1889
+ <article class="col col2 subfooter_nav">
1890
+ <h4>Popular recipes this week</h4>
1891
+ <ul>
1892
+ <li><a href="/recipes/uncategorised-recipes/pizza-dough">Pizza dough </a></li><li><a href="/recipes/beef-recipes/perfect-roast-beef">Perfect roast beef</a></li><li><a href="/recipes/chicken-recipes/perfect-roast-chicken">Perfect roast chicken</a></li><li><a href="/recipes/pork-recipes/6-hour-slow-roasted-pork-shoulder">6-hour slow-roasted pork shoulder</a></li><li><a href="/recipes/beef-recipes/good-old-chilli-con-carne">Good old chilli con carne</a></li><li><a href="/recipes/lamb-recipes/best-roast-leg-of-lamb">Best roast leg of lamb</a></li> </ul>
1893
+ </article>
1894
+
1895
+ <article class="col col3 subfooter_nav">
1896
+ <h4>Popular recipe categories</h4>
1897
+ <ul>
1898
+ <li><a href="/recipes/category/books/jamie-s-15-minute-meals">Jamie's 15-Minute Meals</a></li><li><a href="/recipes/chicken-recipes">Chicken</a></li><li><a href="/recipes/category/course/mains">Mains</a></li><li><a href="/recipes/fish-recipes">Fish</a></li><li><a href="/recipes/category/dishtype/salad">Salad</a></li><li><a href="/recipes/beef-recipes">Beef</a></li> </ul>
1899
+ </article>
1900
+
1901
+ <article class="col col4 join_us_new">
1902
+ <a href="#" ><span id="poppins">
1903
+
1904
+ <img src="http://s3-eu-west-1.amazonaws.com/jamieoliverprod/_beta/recipes/images/Generic.jpg" width="220" height="320" alt="" />
1905
+ </span></a>
1906
+ </article>
1907
+
1908
+ </div>
1909
+
1910
+ </section>
1911
+ <!-- /Recipe footer -->
1912
+
1913
+ <br class="cfix" />
1914
+ </div>
1915
+
1916
+
1917
+ <span class="hide-microdata">
1918
+ <ul>
1919
+
1920
+ <li>
1921
+ <p class="ingredient">
1922
+ <span class="value"> sea salt</span>
1923
+ </p>
1924
+ </li>
1925
+
1926
+ <li>
1927
+ <p class="ingredient">
1928
+ <span class="value"> freshly ground black pepper</span>
1929
+ </p>
1930
+ </li>
1931
+
1932
+ <li>
1933
+ <p class="ingredient">
1934
+ <span class="value">1 onion</span>
1935
+ </p>
1936
+ </li>
1937
+
1938
+ <li>
1939
+ <p class="ingredient">
1940
+ <span class="value">1 kg lamb neck fillet, bone in, cut into 5cm chunks (ask your butcher to do this for you)</span>
1941
+ </p>
1942
+ </li>
1943
+
1944
+ <li>
1945
+ <p class="ingredient">
1946
+ <span class="value">1 kg swede</span>
1947
+ </p>
1948
+ </li>
1949
+
1950
+ <li>
1951
+ <p class="ingredient">
1952
+ <span class="value">2 carrots</span>
1953
+ </p>
1954
+ </li>
1955
+
1956
+ <li>
1957
+ <p class="ingredient">
1958
+ <span class="value">3 Maris Piper potatoes</span>
1959
+ </p>
1960
+ </li>
1961
+
1962
+ <li>
1963
+ <p class="ingredient">
1964
+ <span class="value">2 parsnips</span>
1965
+ </p>
1966
+ </li>
1967
+
1968
+ <li>
1969
+ <p class="ingredient">
1970
+ <span class="value">3 large leeks</span>
1971
+ </p>
1972
+ </li>
1973
+ </ul>
1974
+ </span>
1975
+
1976
+ </span>
1977
+
1978
+
1979
+ <script type="text/javascript">
1980
+ /* Manage carousel title */
1981
+
1982
+ $(".carousel_img").mouseenter(function() {
1983
+ var parent_children = $(this).parent(".col").children('.carousel_title');
1984
+ parent_children.css('display','block');
1985
+ })
1986
+ $(".carousel_title").mouseenter(function() {
1987
+ $(this).css('display','block');
1988
+ })
1989
+ $(".carousel_img").mouseleave(function() {
1990
+ var parent_children = $(this).parent(".col").children('.carousel_title');
1991
+ parent_children.css('display','none');
1992
+ });
1993
+
1994
+
1995
+ $(".related_img").mouseenter(function() {
1996
+ var parent_children = $(this).parent(".panel").children('.title').children('.related_title');
1997
+ parent_children.css('display','block');
1998
+ })
1999
+
2000
+ $(".related_title").mouseenter(function() {
2001
+ $(this).css('display','block');
2002
+ })
2003
+
2004
+ $(".related_img").mouseleave(function() {
2005
+ var parent_children = $(this).parent(".panel").children('.title').children('.related_title');
2006
+ parent_children.css('display','none');
2007
+ });
2008
+
2009
+
2010
+
2011
+
2012
+
2013
+ </script>
2014
+
2015
+ <script>
2016
+ (function() {
2017
+ var fjs = document.createElement('script'); fjs.type = 'text/javascript';
2018
+ fjs.async = true; fjs.src = 'http://js.foodity.com/foodity-cdn.js';
2019
+ var s = document.getElementsByTagName('script')[0];
2020
+ s.parentNode.insertBefore(fjs, s); })();
2021
+ </script>
2022
+ <link rel="stylesheet" href="//cdn.jamieoliver.com/_beta/css/jquery.fancybox.css" />
2023
+ <link href="/_beta/signup/css/ezmark.css" rel="stylesheet" />
2024
+ <link rel="stylesheet" href="/_beta/signup/css/signup_form_style.css" />
2025
+
2026
+ <script>
2027
+ var signup = {
2028
+ alphapopper: '#popup2',
2029
+ thanks_gift_image: 'gift-card-wine-generic.png',
2030
+ ignore_cookie: false,
2031
+ is_logged_in: false,
2032
+ is_carl:false,
2033
+ is_allowed: true,
2034
+ is_dormant: false }
2035
+ </script>
2036
+
2037
+ <script src="http://www.jamieoliver.com/_beta/signup/js/jquery-ui-1.10.4.custom.min.js"></script>
2038
+ <script src="http://www.jamieoliver.com/_beta/signup/js/jquery.fancybox.js"></script>
2039
+ <script src="http://www.jamieoliver.com/_beta/signup/js/jquery.fancybox-media.js"></script>
2040
+ <script src="//cdn.jamieoliver.com/_beta/js/jquery.cookie.js"></script>
2041
+ <script src="http://www.jamieoliver.com/_beta/signup/js/checkmobile.js"></script>
2042
+ <script src="http://www.jamieoliver.com/_beta/signup/js/jquery.ezmark.min.js"></script>
2043
+ <script src="http://www.jamieoliver.com/_beta/signup/js/signup.js?v=1.1"></script>
2044
+
2045
+ <!-- this a href link is there to bind fancy box on load, to trigger fancy box. -->
2046
+ <a href="#popup-container" id="start"></a>
2047
+
2048
+ <div style="display:none" >
2049
+
2050
+ <!-- This is the content container -->
2051
+ <div id="popup-container">
2052
+ </div>
2053
+ <!-- End content container -->
2054
+
2055
+ <div id="popup1">
2056
+ <div class="smallpopups " id="popup-img1">
2057
+
2058
+ <img src="http://www.jamieoliver.com/_beta/signup/images/popup_container.jpg" class="go_signup_step_1 header-imageresponsive" />
2059
+
2060
+ </div>
2061
+ </div>
2062
+
2063
+ <div id="popup2">
2064
+ <div class="smallpopups " id="popup-img2">
2065
+
2066
+ <img src="http://www.jamieoliver.com/_beta/signup/images/popup_container-discover.jpg" class="go_signup_step_1 header-imageresponsive" />
2067
+
2068
+ </div>
2069
+ </div>
2070
+
2071
+ <div id="popup3">
2072
+ <div class="smallpopups " id="popup-img3">
2073
+
2074
+ <img src="http://www.jamieoliver.com/_beta/signup/images/popup_container-fancy.jpg" class="go_signup_step_1 header-imageresponsive" />
2075
+
2076
+ </div>
2077
+ </div>
2078
+
2079
+
2080
+ <div id="popup-form1">
2081
+ <div class="signup-form-container">
2082
+ <form id="register_form" class="register" autocomplete="off" width="940">
2083
+
2084
+ <div id="signup">
2085
+ <div id="signup_form_wrapper" class="signup_form_wrapper">
2086
+
2087
+ <div class="center">
2088
+ <img src="http://www.jamieoliver.com/_beta/signup/images/jo-signup-header.jpg" class="sign-up-logo header-imageresponsive" />
2089
+ <br />
2090
+ <div class="intro-copy header-imageresponsive">
2091
+ Become a member of jamieoliver.com for free and access loads of lovely stuff around the site.
2092
+ You'll get Jamie's latest recipes and food tips direct to your inbox, take advantage of exclusive promotions and offers, ask
2093
+ Jamie and his team questions in the forums and enjoy your weekly newsletter too. </div>
2094
+ </div>
2095
+
2096
+ <div class="clear"></div>
2097
+ <div class="column">
2098
+ <div class="mobile-center">
2099
+
2100
+ <select name="title" id="form_title" class="isrequired" title="Title" required>
2101
+ <option value="" disabled selected id="title-default">Title</option>
2102
+ <option value="Mr">Mr</option>
2103
+ <option value="Mrs">Mrs</option>
2104
+ <option value="Miss">Miss</option>
2105
+ <option value="Ms">Ms</option>
2106
+ <option value="Dr">Dr</option>
2107
+ </select>
2108
+
2109
+ </div>
2110
+ <div class="mobile-center">
2111
+ <span id="error_name_container" class="thelabels">&nbsp;</span>
2112
+ <input type="text" id="req_forename" name="req_forename" placeholder="Name" title="Name" class="placeholder isrequired" required/>
2113
+ </div>
2114
+ <div class="mobile-center">
2115
+ <span id="error_email_container" class="thelabels">&nbsp;</span>
2116
+ <input type="text" id="req_email" name="req_email" placeholder="Email" title="Email" class="placeholder isrequired" required/>
2117
+ </div>
2118
+ <div class="mobile-center">
2119
+ <span id="error_password_container" class="thelabels">&nbsp;</span>
2120
+ <input type="password" name="req_password1" id="req_password1" placeholder="Password" class="placeholder isrequired" onkeyup="passwordStrengthf(this.value)" required />
2121
+ </div>
2122
+
2123
+ </div>
2124
+
2125
+ <div class="column">
2126
+ <div class="right mobile-center">
2127
+ <span id="error_username_container" class="thelabels therightlabels">&nbsp;</span>
2128
+ <input type="text" id="req_username" name="req_username" placeholder="Username" title="Username" class="placeholder isrequired therightlabels" required />
2129
+
2130
+ </div>
2131
+ <div class="right mobile-center">
2132
+ <span id="error_surname_container" class="thelabels therightlabels">&nbsp;</span>
2133
+ <input type="text" id="req_surname" name="req_surname" value="" placeholder="Surname" title="Surname" class="placeholder isrequired therightlabels" required />
2134
+ </div>
2135
+
2136
+ <div class="right mobile-center">
2137
+ <span id="error_confirmemail_container" class="thelabels therightlabels">&nbsp;</span>
2138
+ <input type="text" id="req_email2" name="req_email2" placeholder="Confirm email" title="Confirm email" class="placeholder isrequired therightlabels" required />
2139
+ </div>
2140
+
2141
+ <div class="mobile-center" >
2142
+
2143
+ <span id="passwordDescription"></span>
2144
+ <div id="form_message_container" class="strength0"></div>
2145
+
2146
+
2147
+ </div>
2148
+
2149
+ </div>
2150
+
2151
+ <div class="clear"></div>
2152
+ <div class="mobile-center terms-container">
2153
+ <span class="input-text">By submitting this form you consent to receiving news and updates from businesses in the Jamie Oliver Group of companies and the Jamie Oliver Food Foundation. You also agree to our terms and conditions found <a href="http://www.jamieoliver.com/terms" target="_blank" onclick="_gaq.push(['_trackEvent', 'Signup', 'Terms click']);">here</a>.</span>
2154
+ <div class="spacer"></div>
2155
+ <div id="addcb" class="displayinline"><span class="input-text">&nbsp;I am not a robot. </span></div>
2156
+ </div>
2157
+
2158
+ <div class="hide-ipad">&nbsp;</div>
2159
+ <div class="center ">
2160
+ <img id="submit-button" src="http://www.jamieoliver.com/_beta/signup/images/submit-button.jpg" class="submit-button pointer submitter header-imageresponsive" />
2161
+ <div class="hide-ipad">&nbsp;</div>
2162
+ <div >&nbsp;</div>
2163
+ </div>
2164
+
2165
+ </div>
2166
+ </div>
2167
+ <input type="hidden" id="time_zone" name="timezone" value="0" />
2168
+ <input type="hidden" name="form_sent" value="1" />
2169
+ <input type="hidden" name="email_setting" value="2" />
2170
+ </form>
2171
+
2172
+ </div>
2173
+
2174
+ </div>
2175
+ <div id="popup-moreinfo">
2176
+ <div class="center ">
2177
+ <br /><br /><br />
2178
+
2179
+
2180
+ <img src="http://www.jamieoliver.com/_beta/signup/images/thank-you-header.jpg" class="header-imageresponsive" />
2181
+ <br /><br />
2182
+ <div class="thankyou-copy">
2183
+ <p>We'd love to get to know you a bit better so we only send you</p>
2184
+ <p>news and recipes that you want to read. If you've got two</p>
2185
+ <p>minutes to spare, it would be great if you could answer a quick questionnaire.</p> </div>
2186
+ <br />
2187
+ <br />
2188
+ <div>
2189
+
2190
+ <div class="more-info-center ">
2191
+ <div class="signup-left header-imageresponsive">
2192
+ <img src="http://www.jamieoliver.com/_beta/signup/images/complete-my-profile.jpg" alt="Complete your profile" class="header-imageresponsive" id ="complete_profile_button"/>
2193
+ </div>
2194
+ <div class="signup-left header-imageresponsive" align="center">
2195
+ <img src="http://www.jamieoliver.com/_beta/signup/images/OR.jpg" class="header-imageresponsive" />
2196
+ </div>
2197
+
2198
+ <div class="signup-left header-imageresponsive">
2199
+ <img src="http://www.jamieoliver.com/_beta/signup/images/continue-browsing.jpg" class="header-imageresponsive" id="sendreengagement"/>
2200
+ </div>
2201
+ </div>
2202
+
2203
+ </div>
2204
+
2205
+ </div>
2206
+ </div>
2207
+ </div>
2208
+
2209
+ <!-- GLOBAL FOOTER -->
2210
+ <footer id="footer">
2211
+
2212
+ <div class="cntr">
2213
+
2214
+ <!-- footer top -->
2215
+ <div class="footer_top">
2216
+ <a id="logo_footer" href="http://www.jamieoliver.com/" title="jamieoliver">
2217
+ <span>jamieoliver.com</span>
2218
+ </a>
2219
+
2220
+ <ul id="social_links_footer">
2221
+ <li class="instagram" title="Instagram"><a href="http://instagram.com/jamieoliver" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Instagram']);"><span>Instagram</span></a></li>
2222
+ <li class="youtube" title="YouTube"><a href="http://www.youtube.com/jamieoliver" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'YouTube']);"><span>YouTube</span></a></li>
2223
+ <li class="facebook" title="Facebook"><a href="http://www.facebook.com/jamieoliver" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Facebook']);"><span>Facebook</span></a></li>
2224
+ <li class="twitter" title="Twitter"><a href="http://www.twitter.com/jamieoliver" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Twitter']);"><span>Twitter</span></a></li>
2225
+ <li class="googleplus" title="Google+"><a href="https://plus.google.com/u/0/114841292885454063991/posts" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Google+']);"><span>Google+</span></a></li>
2226
+ <li class="pinterest" title="Pinterest"><a href="http://pinterest.com/source/jamieoliver.com/" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Pinterest']);"><span>Pinterest</span></a></li>
2227
+ <li class="apps" title="Apps"><a href="http://www.jamieoliver.com/shop/jamies-apps/" target="_blank" onclick="_gaq.push(['_trackEvent', 'Beta launch', 'SOCIAL MEDIA ICONS', 'Apps']);"><span>Apps</span></a></li>
2228
+ </ul>
2229
+
2230
+ <a id="top_link" href="#global" title="Scroll to top">
2231
+ <span>Scroll to top</span>
2232
+ </a>
2233
+
2234
+ <br class="cfix" />
2235
+ </div>
2236
+ <!-- /footer top -->
2237
+
2238
+ <!-- footer bottom -->
2239
+ <div class="footer_bottom">
2240
+
2241
+ <div class="col col_1">
2242
+ <h4>About Jamie</h4>
2243
+ <ul>
2244
+ <li><a href="http://www.jamieoliver.com/about/jamie-oliver-biog">Biography</a></li>
2245
+ </ul>
2246
+ </div>
2247
+
2248
+ <div class="col col_2">
2249
+ <h4>Help</h4>
2250
+ <ul>
2251
+ <li><a href="http://www.jamieoliver.com/help">Contact Us</a></li>
2252
+ <li><a href="http://www.jamieoliver.com/terms">Terms &amp; Conditions</a></li>
2253
+ <li><a href="http://www.jamieoliver.com/privacy">Privacy policy</a></li>
2254
+ <li><a href="http://www.jamieoliver.com/cookies">Cookie policy</a></li>
2255
+ </ul>
2256
+ </div>
2257
+
2258
+ <div class="col col_3">
2259
+ <h4>Other Jamie Projects</h4>
2260
+ <ul>
2261
+
2262
+ <li><a href="http://www.jamieathome.com">Jamie at home - Party plan</a></li>
2263
+
2264
+ <li><a href="http://www.jamieoliver.com/fabulousfeasts/home">Fabulous feasts catering</a></li>
2265
+ <li><a href="http://fatlemon.tv/">Fat Lemon</a></li>
2266
+ <li><a href="http://www.freshone.tv">FreshOne Productions</a></li>
2267
+ <li><a href="http://www.tonicproductions.co.uk">Tonic Productions</a></li>
2268
+ </ul>
2269
+ </div>
2270
+
2271
+ <div class="col col_4">
2272
+ <h4>More</h4>
2273
+ <ul>
2274
+ <li><a href="http://www.jamieoliver.com/sitemap">Sitemap</a></li>
2275
+ </ul>
2276
+ <ul>
2277
+ <li><a href="http://www.jamieoliver.com/media-kit">Advertise With Us</a></li>
2278
+ </ul>
2279
+ </div>
2280
+
2281
+ <div class="col col_5" style="height:250px;">
2282
+ <h4><span>Subscribe to Jamie Magazine</span></h4>
2283
+ <img src="/_beta/images/header/SubscribeGraphic_homepage.png" alt="Jamie Magazine" class="subs_img" />
2284
+ <ul style="left:190px; top:0px;" class="subs_copy">
2285
+ <li>* £25 for a years subscription<br>&nbsp;</li>
2286
+ <li>* Free copy of Jamie's brand new Comfort Food book! <br>&nbsp;</li>
2287
+ </ul>
2288
+
2289
+ <a id="magazine-subscribe" style="left:190px; top:175px;" class="btn-white subs_button" onlick="_gaq.push(['_trackEvent', 'footer', '/recipes/lamb-recipes/traditional-welsh-cawl//_magazine_subscribe']);" href="https://jamiemagazine.co.uk/campaign/jocf" target="_blank"><span>Subscribe</span></a>
2290
+ </div>
2291
+
2292
+ </div>
2293
+ <!-- /footer bottom -->
2294
+
2295
+ </div>
2296
+
2297
+ </footer>
2298
+
2299
+ <!-- NEW ELEMENT WRAPPER FOR THE MOB MENU END -->
2300
+ <!-- /NEW ELEMENT WRAPPER FOR THE MOB MENU END -->
2301
+
2302
+ </div>
2303
+ <!-- /#mob_content_wrapper -->
2304
+
2305
+ <!-- RadiumOne code begin -->
2306
+ <script type="text/javascript">
2307
+ <!--
2308
+ document.write('<img src="'+("https:"==document.location.protocol?"https:":"http:")+"//rs.gwallet.com/r1/pixel/x20776"+"r"+Math.round(1E7*Math.random())+'" width="1" height="1" border="0" alt=""/>');
2309
+ //-->
2310
+ </script>
2311
+ <noscript>
2312
+ <img src="https://rs.gwallet.com/r1/pixel/x20776"/>
2313
+ </noscript>
2314
+ <!-- RadiumOne code end -->
2315
+
2316
+ <!-- John Lewis affiliate code -->
2317
+ <script src="https://www.dwin2.com/pub.191217.min.js"></script>
2318
+ <!-- John Lewis code end -->
2319
+
2320
+ </body>
2321
+ </html>
2322
+ <!-- end GLOBAL FOOTER -->