fixes siema to expose source link
This commit is contained in:
parent
19d9fc9f3b
commit
622523a791
|
@ -1,30 +1,44 @@
|
||||||
<div style="position:relative;">
|
|
||||||
<?php
|
<?php
|
||||||
$this->headLink()->appendStylesheet($this->assetUrl('css/carousel.css', 'SimpleCarousel'));
|
$this->headLink()->appendStylesheet($this->assetUrl('css/carousel.css', 'SimpleCarousel'));
|
||||||
$this->headScript()->appendFile($this->assetUrl('js/siema.min.js', 'SimpleCarousel'));
|
$this->headScript()->appendFile($this->assetUrl('js/siema.min.js', 'SimpleCarousel'));
|
||||||
|
|
||||||
$title = false;
|
$title = false;
|
||||||
|
|
||||||
|
|
||||||
$caret = sprintf('<img class="caret" id="left" src="%s">', $this->assetUrl('caret.png', 'SimpleCarousel'));
|
$caret = sprintf('<img class="caret" id="left" src="%s">', $this->assetUrl('caret.png', 'SimpleCarousel'));
|
||||||
$caret_r = sprintf('<img class="caret" id="right" src="%s">', $this->assetUrl('caret.png', 'SimpleCarousel'));
|
$caret_r = sprintf('<img class="caret" id="right" src="%s">', $this->assetUrl('caret.png', 'SimpleCarousel'));
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.siema { margin: 0; }
|
||||||
|
.siema-wrap { height: <?php echo $height ?>; }
|
||||||
|
.siema-img { width: 100%; }
|
||||||
|
#siema-ui {
|
||||||
|
/* background-color: <?php echo $ui_background ?>; */
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<div class="archive-carousel">
|
<div class="archive-carousel">
|
||||||
|
|
||||||
|
|
||||||
<?php if ($renderSourceLink) { ?>
|
<?php if ($renderSourceLink) { ?>
|
||||||
<div class="source-link">
|
<div class="source-link">
|
||||||
<a href="<?= $item_url ?>">Source</a>
|
<a href="<?= $item_url ?>">Source</a>
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
|
<div style="position:relative;">
|
||||||
<div class="siema">
|
<div class="siema">
|
||||||
<?php
|
<?php foreach ($urls as $url) { ?>
|
||||||
foreach ($urls as $url) {
|
<div class="siema-wrap"
|
||||||
$html = sprintf('<div class="siema-wrap" style="%s"><img class="siema-img" style="%s" src="%s"></div>', $wrapStyle, $imgStyle, $url);
|
style="<?= $wrapStyle ?>"
|
||||||
echo $html;
|
>
|
||||||
}
|
<img class="siema-img"
|
||||||
?>
|
style="<?= $imgStyle ?>"
|
||||||
|
src="<?= $url ?>"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
<div id="siema-ui"></div>
|
<div id="siema-ui"></div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -33,12 +47,8 @@
|
||||||
<?= $subTitle ?>
|
<?= $subTitle ?>
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
<style>
|
|
||||||
.siema-wrap { height: <?php echo $height ?>; }
|
|
||||||
.siema-img { width: 100%; }
|
|
||||||
#siema-ui { background-color: <?php echo $ui_background ?>; }
|
|
||||||
</style>
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
let siema = new Siema({
|
let siema = new Siema({
|
||||||
|
@ -53,7 +63,6 @@
|
||||||
let caret = '<?php echo $caret;?>';
|
let caret = '<?php echo $caret;?>';
|
||||||
let caret_r = '<?php echo $caret_r;?>';
|
let caret_r = '<?php echo $caret_r;?>';
|
||||||
|
|
||||||
|
|
||||||
$('#siema-ui').append(caret);
|
$('#siema-ui').append(caret);
|
||||||
<?php if ($title !== false): ?>
|
<?php if ($title !== false): ?>
|
||||||
$('#siema-ui').append('<?php echo $title;?>');
|
$('#siema-ui').append('<?php echo $title;?>');
|
||||||
|
@ -70,4 +79,3 @@
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</div>
|
|
||||||
|
|
Loading…
Reference in New Issue