Arc-hive-omeka-theme/view/common/off-header-dropdown.phtml

21 lines
1.1 KiB
PHTML
Raw Normal View History

2021-04-25 09:49:47 +02:00
<div class="top-bar">
<nav class="top-bar-left">
2021-06-29 08:50:28 +02:00
<!-- <div class="title-bar" data-responsive-toggle="responsive-menu" data-hide-for="large">
2021-04-25 09:49:47 +02:00
<button class="menu-toggle" type="button" data-toggle="offCanvas" aria-label="<?php echo $this->translate('Menu'); ?>"><i class="fas fa-bars"></i></button>
2021-06-29 08:50:28 +02:00
</div> -->
2021-06-09 16:54:24 +02:00
2021-04-25 09:49:47 +02:00
<?php if ($this->themeSetting('logo')): ?>
2021-06-09 16:54:24 +02:00
<a href="<?php echo $site->url(); ?>" class="site-title"><img src="<?php echo $this->themeSettingAssetUrl('logo'); ?>" alt="<?php echo $site->title(); ?>" title="<?php echo $site->title(); ?>"></a>
2021-04-25 09:49:47 +02:00
<?php else: ?>
<a href="<?php echo $site->url(); ?>" class="site-title"><?php echo $this->pageTitle($site->title()); ?></a>
<?php endif; ?>
2021-06-09 16:54:24 +02:00
2021-04-25 09:49:47 +02:00
</nav>
<div class="top-bar-right" id="responsive-menu">
<?php echo $site->publicNav()->menu()->setPartial('common/foundation-navigation.phtml')->renderPartialWithParams(['layout' => 'dropdown']); ?>
2021-06-29 08:50:28 +02:00
<!-- <div class="search"> -->
<?php //echo $this->partial('common/search-form'); ?>
<!-- </div> -->
2021-04-25 09:49:47 +02:00
</div>
2021-05-22 15:49:40 +02:00
</div>