1
|
<?php
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
8
|
|
9
|
?>
|
10
|
<?php if ($logo): ?>
|
11
|
<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home" class="header__logo" id="logo"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" class="header__logo-image" /></a>
|
12
|
<?php endif; ?>
|
13
|
|
14
|
<?php if ($site_name || $site_slogan): ?>
|
15
|
<div class="header__name-and-slogan" id="name-and-slogan">
|
16
|
<?php if ($site_name): ?>
|
17
|
<h1 class="header__site-name" id="site-name">
|
18
|
<a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" class="header__site-link" rel="home"><span><?php print $site_name; ?></span></a>
|
19
|
</h1>
|
20
|
<?php endif; ?>
|
21
|
|
22
|
<?php if ($site_slogan): ?>
|
23
|
<h2 class="header__site-slogan" id="site-slogan"><?php print $site_slogan; ?></h2>
|
24
|
<?php endif; ?>
|
25
|
</div>
|
26
|
<?php endif; ?>
|