Moroccan beef tagine

Moroccan beef tagine

A spicy winter warmer

Ingredients

  1. 500g kilos diced beef
  2. handful parsley, chopped
  3. 1 medium onions, chopped
  4. teaspoon mint, picked and chopped
  5. 60g Moroccan tagine spice mix (because I’m lazy)
  6. 40g butter
  7. 1 apples, quartered
  8. 450g crushed tomatoes
  9. 60ml oil.

Method

  1. Combine all the herbs and spices in a bowl to form a powder, and add the chopped parsley, mint and coriander. Mix well.
  2. Add the diced beef to the herb mix and massage into the meat.
  3. Allow to stand and marinate for two to three hours.
  4. Heat a little oil in the tagine and begin to seal of the marinated meat, a little at a time.
  5. Put the sealed meat aside.
  6. Repeat until all the meat is sealed.
  7. Saute the diced onions in the tagine and put aside with the meat.
  8. While the tagine is still warm, add the crushed tomato and a little water to form a liquid. Heat gently, stirring occasionally.
  9. Once the sauce is heated add the meat and onions to the tagine.
  10. Place the lid on the tagine, and then place it in an oven set at 160 degrees Celsius and slowly braise for two to three hours.
  11. After about 2 hours add the apple.
  12. Just before serving add a handful of chopped parsley.
  13. Serve with mashed potatoes (yes I know traditionally it would be couscous), and yoghurt as garnish

Preparation time: 30 minute(s)

Cooking time: 3 hour(s)

Number of servings (yield): 4

3 :  ★★★☆☆ 1 review(s)


Gentle on my mind

Glen Campbell announces he has Alzheimers: http://www.abc.net.au/news/stories/2011/06/23/3251159.htm

It’s knowing that your door is always open
And your path is free to walk
That makes me tend to leave my sleeping bag
Rolled up and stashed behind your couch
And it’s knowing I’m not shackled
By forgotten words and bonds
And the ink stains that have dried upon some line
That keeps you in the backroads
By the rivers of my mem’ry
That keeps you ever gentle on my mind
Continue reading

HTML5 audio

MP3 source file

<audio src="/audio/straw bales.mp3" controls="controls" preload="metadata"></audio>
This will show the audio and the controls but won’t autoplay or loop. It will preload the metadata only however some browsers may not take notice of this restriction.

<audio src="/audio/straw bales.mp3" controls preload="metadata" autoplay loop></audio>
This will add the autoplay and loop parameters to play the item on load and loop the audio from the end.

Browser Support for MP3 audio
Support for the MP3 format audio is restricted to Safari, IE 9 onwards, and Chrome.

Ogg source file
<audio src="/audio/straw bales.ogg" controls="controls" preload="metadata"></audio>
This will show the audio and the controls but won’t autoplay or loop. It will preload the metadata only however some browsers may not take notice of this restriction.

Browser support for Ogg Vorbis

Support for the Ogg Vorbis format audio is restricted to Firefox, Chrome and Opera

XSSI if and else statements

if statement

<!--#if expr="\"$HTTP_REFERER\" = /abc.net.au/" -->
Content relevant to that site

<!--#elif expr="\"$HTTP_REFERER\" = /google.com/" -->
An ‘or if’ statement

<!--#else -->
this else statement is used for all other instances

<!--#endif -->
finalise the code with an ‘end statement’

More complex if statement – SSI conditional based on document URI

This depends on the URI of the document being referenced.

XSSI variables

Set the variable giving it a value
<!--#set var='site' value='brisbane'--'>

In normal use add the variable as an echo
<!--#echo var='site'-->

If used within another ssi statement use the ‘$’ parameter
<--#include virtual='/${site}/include.htm'-->