Hi,
I've got a problem.
In my template I use the folowing code:
<h1>Foto's</h1>
<p style="text-align: center;"><a href="http://www.domein.be/nl/fotos.php">Klik hier voor foto's</a></p>
<p style="text-align: center;">[[RandomImage?dir=fotoweek]]</p>
But, I've got a site with 3 language so if you click on the above link, you allways got the NL part of the site.
So, I want something like
if $language = "NL"
<h1>Foto's</h1>
<p style="text-align: center;"><a href="http://www.domein.be/nl/fotos.php">Klik hier voor foto's</a></p>
elseif $language = "FR"
<h1>Photos</h1>
<p style="text-align: center;"><a href="http://www.domein.be/fr/fotos.php">Cliquez ici pour les photos</a></p>
else
<h1>Photos</h1>
<p style="text-align: center;"><a href="http://www.domein.be/en/fotos.php">Click here for photos</a></p>
endif
<p style="text-align: center;">[[RandomImage?dir=fotoweek]]</p>
I want this in my template, do I have to use <?php ... ??
I'm not a php coder so for me this is something like flying the Concorde...

Thxalot!
Grtz,
Luc