Has created an item for website propeties, works fine execpt images/files.
Getting the image with GetString:
<img src="@GetString("Item.Area.NORRIQ_Logo")" width="156" height="58" alt="NORRIQ - Your business simplified" />
This gives me this, when viewing the page:
<img src="/Files/Templates/Designs/niq/"="" width="156" height="58" alt="NORRIQ - Your business simplified">
An alternative, with image as a variable:
<img src="@logo" width="156" height="58" alt="NORRIQ - Your business simplified" />
Gives this result:
<img src="/Files/Templates/Designs/niq//Files/Images/logo/logo.png" width="156" height="58" alt="NORRIQ - Your business simplified">
Any advice, what am I doing wrong?