parent
931e674e11
commit
d7aa820113
|
@ -1,3 +1,22 @@
|
||||||
|
|
||||||
|
|
||||||
|
<!-- arc-hive header-image insert begins -->
|
||||||
|
<?php
|
||||||
|
$img_src = null;
|
||||||
|
$img_src = $this->getHelperPluginManager()->get('headerImage')->getImage();
|
||||||
|
if (!$img_src) {
|
||||||
|
$img_src = $this->assetUrl('img/default-ARC-HIVE-hero-image.jpg');
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<style>
|
||||||
|
.arc-page-header-img {
|
||||||
|
content: url("<?= $img_src ?>");
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<?php
|
||||||
|
?>
|
||||||
|
<!-- arc-hive header-image insert ends -->
|
||||||
|
|
||||||
<main class="">
|
<main class="">
|
||||||
<a href="<?php echo $site->url(); ?>" class="site-brand arc-hive-off">
|
<a href="<?php echo $site->url(); ?>" class="site-brand arc-hive-off">
|
||||||
<?php if ($this->themeSetting('logo')): ?>
|
<?php if ($this->themeSetting('logo')): ?>
|
||||||
|
|
|
@ -5,9 +5,12 @@ $showPagePagination = $this->siteSetting('show_page_pagination', true);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- arc-hive page header-image insert begins -->
|
<!-- arc-hive page header-image insert begins -->
|
||||||
<?php
|
<?php
|
||||||
|
/*
|
||||||
|
$img_src has already been set at view/common/header-default.phtml
|
||||||
|
We override it here because a page may have it's own header image
|
||||||
|
*/
|
||||||
$img_src = null;
|
$img_src = null;
|
||||||
$img_src = $this->getHelperPluginManager()->get('headerImage')->getImage($page);
|
$img_src = $this->getHelperPluginManager()->get('headerImage')->getImage($page);
|
||||||
if (!$img_src) {
|
if (!$img_src) {
|
||||||
|
@ -21,7 +24,6 @@ $img_src = null;
|
||||||
</style>
|
</style>
|
||||||
<?php
|
<?php
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!-- arc-hive page header-image insert ends -->
|
<!-- arc-hive page header-image insert ends -->
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
Loading…
Reference in New Issue