53 lines
1.7 KiB
PHP
53 lines
1.7 KiB
PHP
<?php
|
|
$lg = $_GET['lg'] ?? 'bg';
|
|
?>
|
|
<div class="flex top">
|
|
<div class="top-title">Ръководство на потребителя</div>
|
|
<div class="breadcrumb p10">
|
|
<a href="/admin-global/index/dashboard">Начало</a>
|
|
<span>Ръководство на потребителя</span>
|
|
</div>
|
|
</div>
|
|
<div class="inner-content p10">
|
|
<div class="action-buttons" style="border-bottom: 4px solid #f1f1f1; padding-bottom: 10px">
|
|
<a href="?lg=bg" class="btn-ib btn-default ct guide-link <?= $lg == 'bg' ? 'selected' : ''?>"><i class="lg lg-bg"></i> Български</a>
|
|
<a href="?lg=en" class="btn-ib btn-default ct guide-link <?= $lg == 'en' ? 'selected' : ''?>"><i class="lg lg-en"></i> Английски</a>
|
|
</div>
|
|
<div class="top10">
|
|
<iframe src="<?= Yii::$app->params['cms'].'/_public/guides/'.$lg.'/guide.html' ?>" style="height: calc(100vh - 200px); width: 100%; border: 0"></iframe>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
.guide-link {
|
|
border: 1px solid #cccccc !important;
|
|
}
|
|
.guide-link.selected {
|
|
background: var(--base-background-ultra-bright-clear) !important;
|
|
}
|
|
.modalImg {
|
|
height: auto !important;
|
|
max-height: none !important;
|
|
}
|
|
.modalImg img {
|
|
height: auto !important;
|
|
width: 100% !important;
|
|
display: block;
|
|
}
|
|
</style>
|
|
<script>
|
|
window.onscroll = function () {
|
|
const ab = one('.action-buttons');
|
|
if(ab) {
|
|
if (window.pageYOffset > ab.offsetTop) {
|
|
ab.addClass('buttons-top')
|
|
} else {
|
|
ab.removeClass('buttons-top')
|
|
}
|
|
}
|
|
}
|
|
function openZoomImg(src) {
|
|
//alert(src);
|
|
modal.modalPreview(src)
|
|
}
|
|
</script>
|