123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <link rel="stylesheet" href="css/bootstrap_superhero.min.css" />
- <link rel="stylesheet" href="css/styles.css" />
- <title>Cook ratatouille</title>
- </head>
- <body>
- <!-- Header -->
- <nav id="header" class="navbar navbar-default">
- <div class="container-fluid">
- <!-- collapsed navbar -->
- <div class="navbar-header">
- <a class="navbar-brand" href="/">Simple TODOs</a>
- <button type="button"
- class="navbar-toggle collapsed"
- data-toggle="collapse"
- data-target="#main_navbar"
- aria-expanded="false">
- <span class="sr-only">Toggle navigation</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- </div><!-- /collapsed navbar -->
- <!-- uncollapsed navbar -->
- <div id="main_navbar" class="collapse navbar-collapse">
- <ul class="nav navbar-nav">
- <li class="active"><a href="index.html">All tasks</a></li>
- </ul>
- <ul class="nav navbar-nav navbar-right">
- <li><a href="about.html">About</a></li>
- </ul>
- </div><!-- /uncollapsed navbar -->
- </div>
- </nav>
- <div id="content" class="container">
- <ol class="breadcrumb">
- <li><a href="/">List of tasks</a></li>
- <li>Cook ratatouille</li>
- </ol>
- <!-- Page title -->
- <div class="page-header">
- <h1>Cook ratatouille<span class=""></span></h1>
- </div>
- <div class="row">
- <!-- Task description -->
- <div class="col-sm-9">
- <p>Preheat the grill to high.</p>
- <p>Cut the aubergines into 1cm slices, then place on a baking tray and
- brush with 1 tablespoon of oil.</p>
- <p>Grill for 10 to 12 minutes, till golden brown. Turn the slices
- over, brush with another tablespoon of oil and grill for 5 to 8
- minutes, until golden.</p>
- <p>Peel and finely slice the onions widthways, peel and finely slice
- the garlic, then deseed and slice the peppers and fennel. Cut the
- courgettes into 1cm rounds.</p>
- <p>In a large frying pan, heat the remaining oil over a medium heat.
- Add the onions and cook for 5 minutes, until they begin to soften
- and turn golden.</p>
- <p>Add the garlic and cook for a few minutes, then add the peppers,
- fennel and courgettes, and cook for 5 to 8 minutes until they begin
- to soften.</p>
- <p>Use a knife to score a cross into the base of each tomato. Put them
- in a bowl, cover with boiling water and leave for a minute. Remove
- with a slotted spoon and peel the skin.</p>
- <p>Cut the tomatoes in half and remove the seeds with a spoon. Roughly
- chop the tomatoes and add to the pan, along with the aubergine and
- herbes de Provence.</p>
- <p>Lower the heat, cover the pan with a tight lid and simmer gently
- for 20 minutes or so, until the vegetables are cooked through.
- Season to taste.</p>
- <p>To make the salsa verde, remove any tough herb stalks and peel the
- garlic, then use a pestle and mortar to grind the herbs and garlic
- to a paste, adding a little sea salt to help the process (or blitz
- in a food processor).</p>
- <p>Crush in the capers. Stir in the oil, finely grate in the lemon
- zest and squeeze in the juice, adding more oil or juice if
- necessary, to create a flavour and texture you like. Season to
- taste.</p>
- <p>Serve the ratatouille in bowls with a spoonful of salsa verde.</p>
- <p>Read more at <a href="http://www.jamieoliver.com/recipes/vegetables-recipes/ratatouille/#bAEduEzEa72Dx1bi.99">
- http://www.jamieoliver.com/recipes/vegetables-recipes/ratatouille/#bAEduEzEa72Dx1bi.99
- </a>
- </p>
- </div>
- <!-- User -->
- <div class="col-sm-3">
- <ul class="list-group">
- <li class="list-group-item list-group-item-warning">
- <div class="input-group">
- <span class="input-group-addon">
- <input type="checkbox" aria-label="Task not yet completed">
- </span>
- <a class="form-control" href="task.html">Done?</a>
- </div>
- </li>
- </ul>
- <div class="thumbnail">
- <div class="caption">
- <p>Submitted by:</p>
- <p><a href="https://en.wikipedia.org/wiki/Jamie_Oliver">Jamie Oliver</a></p>
- </div>
- <img src="images/512px-Jamie_Oliver_retouched.jpg" alt="Jamie Oliver" />
- </div>
- </div>
- </div>
- </div>
- <!-- Footer -->
- <nav id="footer" class="navbar navbar-default">
- <ul class="nav navbar-nav">
- <li><a href="about.html">About this site</a></li>
- <li><a href="about.html#licensing">Licensing information</a></li>
- </ul>
- </nav>
-
- <script src="js/jquery-2.2.1.js"></script>
- <script src="js/bootstrap.js"></script>
- <script src="js/behaviours.js"></script>
- </body>
- </html>
|