21 lines
918 B
PHTML
21 lines
918 B
PHTML
<main class="">
|
|
<?php if ($this->themeSetting('logo')): ?>
|
|
<a href="<?php echo $site->url(); ?>" class="site-brand arc-hive-off">
|
|
<img src="<?php echo $this->themeSettingAssetUrl('logo'); ?>" alt="<?php echo $site->title(); ?>" title="<?php echo $site->title(); ?>" class="logo">
|
|
<h1 class="site-name"><?php echo $site->title(); ?></h1>
|
|
<h2 class="site-description">an integrative digital bio-art platform</h2>
|
|
</a>
|
|
<?php else: ?>
|
|
<a href="<?php echo $site->url(); ?>" role="banner" class="site-brand">
|
|
<h1 class="site-name-show"><?php echo $this->pageTitle($site->title()); ?></h1>
|
|
<h2 class="site-description-show">an integrative digital bio-art platform</h2>
|
|
</a>
|
|
<?php endif; ?>
|
|
|
|
</main>
|
|
<nav>
|
|
<menu class="">
|
|
<?php echo $site->publicNav()->menu()->setPartial('common/foundation-navigation.phtml')->renderPartialWithParams(['layout' => 'dropdown']); ?>
|
|
</menu>
|
|
</nav>
|