-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnavigation.php
More file actions
22 lines (21 loc) · 829 Bytes
/
navigation.php
File metadata and controls
22 lines (21 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
* @var rex_fragment $this
* @psalm-scope-this rex_fragment
*/
?>
<?php if ('' != $this->navigation): ?>
<div id="rex-js-nav-main" class="rex-nav-main navbar-default">
<nav class="rex-nav-main-navigation" role="navigation">
<div>
<?php
if (rex_addon::get('be_branding')->getConfig('file')) {
echo '<img src="' . be_branding::checkExtension(rex_addon::get('be_branding')->getConfig('file'.be_branding::getCurrentBeDomainId(true))) . '" class="img-responsive center-block" style="padding: 20px 10px 5px 10px; width: 100%;"/></a>';
}
echo $this->navigation;
?>
</div>
</nav>
</div>
<div id="rex-js-nav-main-backdrop" class="rex-nav-main-backdrop"></div>
<?php endif;