Drupal logo template tpl php
Question
How to embed a logo within the Druapl template.tpl.php file?
Answer
An example is shown below:
<div id="logo">
<?
if ($logo): ?>
<a href="<? print $base_path; ?>" title="<? print t('Click to return to the Homepage'); ?>"><img src="<? print $logo; ?>" alt="<? print t('Click to return to the Homepage '); ?>" /></a>
<? endif; ?>
</div>