Hi
Probably a really simple solution to this question, but how can i use the if defined functions from the old templates, in Razor
How would i wrap this in an If Defined?
<img src='@GetValue("Item.Mynd.Value")' alt='@GetValue("Item.Yvirskrift.Value")' />
Or in other words, i want to translate this to razor
<!--@If Defined(Item.Mynd.Value)-->
<img src="<!--@Item.Mynd.Value-->" alt="<!--@Item.Yvirskrift.Value-->" />
<!--@EndIf(Item.Mynd.Value)-->
Aprecieate your help