Arc-hive-omeka-theme/view/omeka/site/media/show.phtml

47 lines
1.1 KiB
PHTML
Raw Normal View History

2021-04-25 09:49:47 +02:00
<?php
$translate = $this->plugin('translate');
?>
<?php $this->htmlElement('body')->appendAttribute('class', 'media resource show'); ?>
2021-05-31 15:26:34 +02:00
<!-- arc-hive insert begins -->
<?php
2021-05-31 15:26:34 +02:00
//$site->pages();
$img_src = $this->getHelperPluginManager()->get('archiveSiteMeta')->getSiteImage($site);
2021-05-31 15:26:34 +02:00
if (!$img_src) {
$img_src = '/themes/archive/asset/img/default-header-image.jpg';
}
if ($this->site->title() == "Collections") {
$image_height = "300px";
} else {
$image_height = "200px";
}
?>
2021-05-31 15:26:34 +02:00
<style>
#archive_header_img {
background: url("<?= $img_src ?>") no-repeat;
width: 100%;
height: <?= $image_height ?>;
2021-05-31 15:26:34 +02:00
}
</style>
<script>
<?php
$_html = '<a href="'.$this->site->url().'">'.$this->site->title().'</a>';
?>
$("#archive_page_title").html('<?php echo $_html ?>');
</script>
2021-05-31 15:26:34 +02:00
<!-- arc-hive insert ends -->
2021-04-25 09:49:47 +02:00
<div class="resource-title">
<?php echo $this->pageTitle($media->displayTitle(), 2); ?>
</div>
<?php $this->trigger('view.show.before'); ?>
<?php echo $media->render(); ?>
<?php echo $media->displayValues(); ?>
2021-05-24 18:54:53 +02:00
2021-05-31 18:00:30 +02:00
<button class="end_of_page_button" onclick="window.history.back()">
Back
2021-05-24 18:54:53 +02:00
</button>
2021-04-25 09:49:47 +02:00
<?php $this->trigger('view.show.after'); ?>