Compare commits

..

No commits in common. "5359f3a74c800f6b7f874ac1b9e0a78f80be31e3" and "e84517776dee0682163ada1ffaa755c35f6a48ca" have entirely different histories.

5 changed files with 5 additions and 34 deletions

View File

@ -20,13 +20,6 @@ $layoutAttributes = [
<?php $hasChildren = $page->hasPages() ?>
<?php $showChildren = $this->themeSetting('nav_show_levels'); ?>
<?php if (!$hasChildren || ($showChildren == 0)): ?>
<?php
$substring = "collections";
$length = strlen($substring);
if ( substr_compare($page->getHref(), $substring, -$length) === 0 ) {
continue;
}
?>
<li<?php if ($page->isActive()) echo ' class="active"' ?>>
<a
class="nav-header"

View File

@ -60,7 +60,7 @@ endif;
<a id="skipnav" href="#content"><?php echo $this->translate('Skip to main content'); ?></a>
<?php echo $userBar; ?>
<a href="/">
<a href="http://arc-hive.zone">
<img class="archive-logo"
src="<?= $this->assetUrl("img/arc-hive-logo.jpg") ?>"
/>

View File

@ -29,14 +29,7 @@ if ($img_src) {
<?php } ?>
<script>
<?php
if ($this->site->title() != "Collections") {
$_html = '<a href="'.$this->site->url().'">'.$this->site->title().'</a>';
} else {
$_html = $this->site->title();
}
?>
$("#archive_page_title").html('<?php echo $_html ?>');
$("#archive_page_title").html('<?= $site->title(); ?>');
</script>

View File

@ -24,20 +24,11 @@ if ($img_src) {
</style>
<?php } ?>
<script>
<?php
if ($this->site->title() != "Collections") {
$_html = '<a href="'.$this->site->url().'">'.$this->site->title().'</a>';
} else {
$_html = $this->site->title();
}
?>
$("#archive_page_title").html('<?php echo $_html ?>');
$("#archive_page_title").html('<?= $site->title(); ?>');
</script>
<div class="resource-title">
<?php echo $this->pageTitle($media->displayTitle(), 2); ?>
</div>

View File

@ -8,6 +8,7 @@ $showPagePagination = $this->siteSetting('show_page_pagination', true);
<?php
// set header images
$img_src = $this->getHelperPluginManager()->get('headerImage')->getImage($page);
if ($img_src) {
?>
<style>
@ -26,14 +27,7 @@ if ($img_src) {
<?php } ?>
<script>
<?php
if ($this->site->title() != "Collections") {
$_html = '<a href="'.$this->site->url().'">'.$this->site->title().'</a>';
} else {
$_html = $this->site->title();
}
?>
$("#archive_page_title").html('<?php echo $_html ?>');
$("#archive_page_title").html('<?= $site->title(); ?>');
</script>
<?php /*