aboutsummaryrefslogtreecommitdiff
path: root/mod/habitorio_theme/views/default/page/elements/header_logo.php
blob: 373ce27f71bffda2118453005baa72f047ab3a04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Elgg header logo
 */

$site = elgg_get_site_entity();
$site_name = $site->name;
$site_url = elgg_get_site_url();
$site_description = $site->description;
?>

<h1 style="float:left;margin-top:10px;">
	<a class="elgg-heading-site" href="<?php echo $site_url; ?>">
		<?php echo $site_name; ?>
	</a>
</h1>


<div style="clear:left;"></div>
<p style="float:left;margin-left:20px;"><?php echo $site_description; ?></p>