What is the best way to have a small piece in page.tpl.php of HTML dynamic?
For example, I have on the home page an image like:
<img src="/images/home.gif" />
But then I want the same image on about us page to replaced to the same sized image:
<img src="/images/about-us.gif" />
I need to do this from content part, because I have a lot of pages with different images, so I want to control this from content block, or otherwise use a default value.
Thanks in advance.