bibb-theme/templates/authority/home.phtml.20230926
2026-02-24 07:35:06 +01:00

89 lines
3.0 KiB
Plaintext

<?
// Set page title.
$this->headTitle($this->translate('Search Home'));
// Disable top search box -- this page has a special layout.
$this->layout()->searchbox = false;
// Set default value if necessary:
if (!isset($this->searchClassId)) {
$this->searchClassId = 'SolrAuth';
}
// Load search actions and settings (if any):
$options = $this->searchOptions($this->searchClassId);
$basicSearch = $options->getSearchAction();
$advSearch = $options->getAdvancedSearchAction();
$this->layout()->breadcrumbs = false;
?>
<!-- <div class="container" style="background:transparent;background-color:white;min-height:40px"> </div>
<div class="hero-container">
<div class="blue-layer clear">
<div class="container">
<div class="col-sm-5 col-md-5 col-lg-5" >
<h3 style=""><?//=$this->transEsc("MainHeadLine")?></h3>
</div>
<div class="col-sm-1 col-md-1 col-lg-1" >
</div>
<div class="col-sm-6 col-md-6 col-lg-6" >
<p ><?//=$this->transEsc("MainHeaderText")?></p><br>
</div>
</div>
</div>
</div>
-->
<div class="searchHomeContent">
<?
$ilsStatusScript = <<<JS
$(document).ready(function() {
$.ajax({
dataType: 'json',
method: 'GET',
data: {'offlineModeMsg':'ils_offline_home_message'},
url: VuFind.path + '/AJAX/JSON?method=getIlsStatus',
success: function(response) {
$('.searchHomeContent').prepend(response.data);
}
});
});
JS;
?>
<?=$this->inlineScript(\Zend\View\Helper\HeadScript::SCRIPT, $ilsStatusScript, 'SET'); ?>
<?=$this->context($this)->renderInContext("search/searchboxAuthorities.phtml", ['ignoreHiddenFilterMemory' => true])?>
<?=$this->inlineScript(\Zend\View\Helper\HeadScript::SCRIPT, '$("#searchForm_lookfor").focus();', 'SET'); ?>
</div>
<div class="mainbody left">
<h4><?=$this->transEsc("AuthorityMainDescriptionHeadline")?></h4>
<p><?=$this->transEsc("AuthorityMainDescriptionTop")?></p><br>
<ul>
<li style="list-style-type:disc; margin-left:20px;"><?=$this->translate("AuthorityMainDescriptionVETRepository")?></li>
<br>
<li style="list-style-type:disc; margin-left:20px;" ><?=$this->translate("AuthorityMainDescriptionLibrary")?></li>
</ul>
<br />
<p style="margin-bottom:20px;"><?=$this->transEsc("AuthorityMainDescriptionBottomText")?></p>
<br>
</div>
<div class="sidebar right">
<ul class="list-group contact-home">
<!-- <li class="list-group-item"> -->
<h4> <?=$this->transEsc("Contact") ?></h4>
<!-- <ul class="contact-list"> -->
<span class="at"><a target="_blank" href="https://www2.bibb.de/bibbtools/de/ssl/kontakt.php?maid=628"><?=$this->transEsc("Libraryteam")?></a></span>
<!-- </ul> -->
<!-- <ul class="contact-list"> -->
<span class="at"><a target="_blank" href="https://www2.bibb.de/bibbtools/de/ssl/kontakt.php?maid=4841"><?=$this->transEsc("Repositoryteam")?></a></span>
<!-- </ul> -->
<!-- </li> -->
</ul>
</div>