Drupal logo template tpl php

Category
drupal, themes
Date Created
30th Oct 2009
Last Updated
9th Jul 2010

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>