2656 lines
91 KiB
PHP
2656 lines
91 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Site
|
|
* @subpackage Templates.cassiopeia
|
|
*
|
|
* @copyright (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
defined( '_JEXEC' ) or die;
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\HTML\HTMLHelper;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\Uri\Uri;
|
|
/** @var Joomla\CMS\Document\HtmlDocument $this */
|
|
$app = Factory::getApplication();
|
|
|
|
$wa = $this->getWebAssetManager();
|
|
// Browsers support SVG favicons
|
|
$this->addHeadLink( HTMLHelper::_( 'image', 'joomla-favicon.svg', '', [], true, 1 ), 'icon', 'rel', [ 'type' => 'image/svg+xml' ] );
|
|
$this->addHeadLink( HTMLHelper::_( 'image', 'favicon.ico', '', [], true, 1 ), 'alternate icon', 'rel', [ 'type' => 'image/vnd.microsoft.icon' ] );
|
|
$this->addHeadLink( HTMLHelper::_( 'image', 'joomla-favicon-pinned.svg', '', [], true, 1 ), 'mask-icon', 'rel', [ 'color' => '#000' ] );
|
|
// Detecting Active Variables
|
|
$option = $app->input->getCmd( 'option', '' );
|
|
$view = $app->input->getCmd( 'view', '' );
|
|
$layout = $app->input->getCmd( 'layout', '' );
|
|
$task = $app->input->getCmd( 'task', '' );
|
|
$itemid = $app->input->getCmd( 'Itemid', '' );
|
|
$sitename = htmlspecialchars( $app->get( 'sitename' ), ENT_QUOTES, 'UTF-8' );
|
|
$menu = $app->getMenu()->getActive();
|
|
$pageclass = $menu !== null ? $menu->getParams()->get( 'pageclass_sfx', '' ) : '';
|
|
// Color Theme
|
|
$paramsColorName = $this->params->get( 'colorName', 'colors_standard' );
|
|
$assetColorName = 'theme.' . $paramsColorName;
|
|
$wa->registerAndUseStyle( $assetColorName, 'media/templates/site/cassiopeia/css/global/' . $paramsColorName . '.css' );
|
|
// Use a font scheme if set in the template style options
|
|
$paramsFontScheme = $this->params->get( 'useFontScheme', false );
|
|
$fontStyles = '';
|
|
if ( $paramsFontScheme ) {
|
|
if ( stripos( $paramsFontScheme, 'https://' ) === 0 ) {
|
|
$this->getPreloadManager()->preconnect( 'https://fonts.googleapis.com/', [ 'crossorigin' => 'anonymous' ] );
|
|
$this->getPreloadManager()->preconnect( 'https://fonts.gstatic.com/', [ 'crossorigin' => 'anonymous' ] );
|
|
$this->getPreloadManager()->preload( $paramsFontScheme, [ 'as' => 'style', 'crossorigin' => 'anonymous' ] );
|
|
$wa->registerAndUseStyle( 'fontscheme.current', $paramsFontScheme, [], [ 'media' => 'print', 'rel' => 'lazy-stylesheet', 'onload' => 'this.media=\'all\'', 'crossorigin' => 'anonymous' ] );
|
|
if ( preg_match_all( '/family=([^?:]*):/i', $paramsFontScheme, $matches ) > 0 ) {
|
|
$fontStyles = '--cassiopeia-font-family-body: "' . str_replace( '+', ' ', $matches[1][0] ) . '", sans-serif;
|
|
--cassiopeia-font-family-headings: "' . str_replace( '+', ' ', isset( $matches[1][1] ) ? $matches[1][1] : $matches[1][0] ) . '", sans-serif;
|
|
--cassiopeia-font-weight-normal: 400;
|
|
--cassiopeia-font-weight-headings: 700;';
|
|
}
|
|
} else {
|
|
$wa->registerAndUseStyle( 'fontscheme.current', $paramsFontScheme, [ 'version' => 'auto' ], [ 'media' => 'print', 'rel' => 'lazy-stylesheet', 'onload' => 'this.media=\'all\'' ] );
|
|
$this->getPreloadManager()->preload( $wa->getAsset( 'style', 'fontscheme.current' )->getUri() . '?' . $this->getMediaVersion(), [ 'as' => 'style' ] );
|
|
}
|
|
}
|
|
|
|
$menu = $app->getMenu();
|
|
$isHome = true;// $menu->getActive() == $menu->getDefault() || ($itemid == 101 && $option=='com_content' && $view == 'article');
|
|
|
|
// Override 'template.active' asset to set correct ltr/rtl dependency
|
|
$wa->registerStyle( 'template.active', '', [], [], [ 'template.cassiopeia.' . ( $this->direction === 'rtl' ? 'rtl' : 'ltr' ) ] );
|
|
// Logo file or site title param
|
|
if ( $this->params->get( 'logoFile' ) ) {
|
|
$logo = '<img src="' . Uri::root( true ) . '/' . htmlspecialchars( $this->params->get( 'logoFile' ), ENT_QUOTES ) . '" alt="' . $sitename . '">';
|
|
} elseif ( $this->params->get( 'siteTitle' ) ) {
|
|
$logo = '<span title="' . $sitename . '">' . htmlspecialchars( $this->params->get( 'siteTitle' ), ENT_COMPAT, 'UTF-8' ) . '</span>';
|
|
} else {
|
|
$logo = HTMLHelper::_( 'image', 'logo.svg', $sitename, [ 'class' => 'logo d-inline-block' ], true, 0 );
|
|
}
|
|
$hasClass = '';
|
|
if ( $this->countModules( 'sidebar-left', true ) ) {
|
|
$hasClass .= ' has-sidebar-left';
|
|
}
|
|
if ( $this->countModules( 'sidebar-right', true ) ) {
|
|
$hasClass .= ' has-sidebar-right';
|
|
}
|
|
// Container
|
|
$wrapper = $this->params->get( 'fluidContainer' ) ? 'wrapper-fluid' : 'wrapper-static';
|
|
$this->setMetaData( 'viewport', 'width=device-width, initial-scale=1' );
|
|
$stickyHeader = $this->params->get( 'stickyHeader' ) ? 'position-sticky sticky-top' : '';
|
|
// Defer fontawesome for increased performance. Once the page is loaded javascript changes it to a stylesheet.
|
|
$wa->getAsset( 'style', 'fontawesome' )->setAttribute( 'rel', 'lazy-stylesheet' );
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
|
|
|
|
<head>
|
|
<jdoc:include type="metas" />
|
|
<jdoc:include type="styles" />
|
|
<jdoc:include type="scripts" />
|
|
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet' type='text/css'>
|
|
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet' type='text/css'>
|
|
<link href='https://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css" />
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment-with-locales.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.17.5/xlsx.min.js"></script>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;1,100;1,200;1,300&display=swap" rel="stylesheet">
|
|
<link href="/templates/cassiopeia/images/favicon.ico" rel="icon" type="image/vnd.microsoft.icon">
|
|
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
|
|
$doc = JFactory::getDocument();
|
|
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/ar-style.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/bip.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/szkola.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/arboretum.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/instytut.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/dendrobiology.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/style.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/style1.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/swiper.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/aktualnosci.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/css/select2.min.css' );
|
|
$doc->addStyleSheet( 'templates/' . $this->template . '/lightbox/src/css/lightbox.css' );
|
|
|
|
$doc->addScript( '/templates/' . $this->template . '/lightbox/src/js/lightbox.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/pagination.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/50.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod53.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod44.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod50.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/main.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod1.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod2.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod3.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod4.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod5.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod6.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod7.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod8.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod9.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod10.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod11.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod12.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod13.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod14.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod15.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod16.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod17.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod18.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod19.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod20.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod21.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod22.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod23.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod24.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod25.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod26.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod27.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod28.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod29.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod30.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod31.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod32.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod33.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod34.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod35.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod36.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod37.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod38.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod39.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod40.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod41.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod42.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod43.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod45.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod46.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod47.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod48.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod49.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod51.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod52.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod54.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod55.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod56.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod57.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod58.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod59.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod60.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod61.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod62.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod63.js', 'text/javascript' );
|
|
// $doc->addScript( '/templates/' . $this->template . '/js/mod64.js', 'text/javascript' ); // Wyłączony - konflikt z dodajmetryczke.js
|
|
$doc->addScript( '/templates/' . $this->template . '/js/mod65.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/submenuboldin.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/szkolabold.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/dendrobold.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/dolnemenubold.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/select2.min.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/fotoaktualnosciwyroop.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/hideden.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/sortcontent.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/repairsearch.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/szukajkaplaceholder.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/linkshorthome.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/sedrop.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/dendroorep.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/dendrorepairarticle.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/arbortetumimgdofotoaktualnosci.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/greenbutonsimagelinks.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/linkshort.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/cookietranslate.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/joomdelete.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/redcart.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/dodajmetryczke.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/dendrorepairold.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/dendrorep.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/spacewydarzenia.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/alty.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/fotoaktualnosciview.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/blocoverflowydarzenia.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/wyrownaslider.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/datewithcategory.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/aktualno.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/category.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/bibliotekazamiana.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/stronaprojektu.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/liczbawynikow.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/ochronamaila.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/szukajka.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/pustyartykul.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/wacgcontrast.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/wcagcontrast1.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/papaparse.min.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/widokartykulow.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/shortlinksearch.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/readtags.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/griks.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/menushow.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/menushow1.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/showmenu2.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/weight.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/changebold.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/okruszki.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/krta.js', 'text/javascript' );
|
|
if($view !== 'employees')
|
|
{
|
|
$doc->addScript( '/templates/' . $this->template . '/js/okruszkizmiana.js', 'text/javascript' );
|
|
}
|
|
$doc->addScript( '/templates/' . $this->template . '/js/notshowlines.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/errorcheck.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/formyzwiedzania.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/akk.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/ac1.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/acc.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/video.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/closeslide.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/bipmenuc.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/target.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/wiadomosci.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/okrrep.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/aktualnosciposition.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/drugi.js', 'text/javascript' );
|
|
$doc->addScript( '/templates/' . $this->template . '/js/metryczka.js', 'text/javascript' );
|
|
|
|
|
|
?>
|
|
<link rel="icon" href="/templates/instytut_dendrologii_/favicon.ico" />
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3SEFGMJCJ3"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'G-3SEFGMJCJ3');
|
|
</script>
|
|
</head>
|
|
|
|
<body class="site <?php echo $option
|
|
. ' ' . $wrapper
|
|
. ' view-' . $view
|
|
. ( $layout ? ' layout-' . $layout : ' no-layout' )
|
|
. ( $task ? ' task-' . $task : ' no-task' )
|
|
. ( $itemid ? ' itemid-' . $itemid : '' )
|
|
. ( $pageclass ? ' ' . $pageclass : '' )
|
|
. $hasClass
|
|
. ( $this->direction == 'rtl' ? ' rtl' : '' );
|
|
?>">
|
|
|
|
<?php if ( $this->countModules( 'header' ) ) : ?>
|
|
<header class="header container-header full-width<?php echo $stickyHeader ? ' ' . $stickyHeader : ''; ?>">
|
|
<div class="socials">
|
|
<a href="https://www.idpan.poznan.pl/pl/logo-hr" class="hr"><img src="/images/Arboretum/hr.png"></a>
|
|
<div>
|
|
<jdoc:include type="modules" name="linkbip" style="none" />
|
|
</div>
|
|
<div class="sc">
|
|
<div class="btn-icon-small--medium"><img src="/images/stronaGlowna/Anorm.png" /></div>
|
|
|
|
<div class="btn-icon-small--small"><img src="/images/stronaGlowna/Apl.png" /></div>
|
|
|
|
<div class="btn-icon-small--large"><img src="/images/stronaGlowna/Alus.png" /></div>
|
|
</div>
|
|
<div class="contrast">
|
|
<div class="button-reset-color"><img src="/images/stronaGlowna/Contrast.png" /></div>
|
|
<div class="btn-icon-small--black-yellow"><img src="/images/stronaGlowna/Ellipse_1.png" /></div>
|
|
</div>
|
|
<div class="languages">
|
|
<jdoc:include type="modules" name="laguagg" style="none" />
|
|
</div>
|
|
<div class="soc">
|
|
<div class="facos"><a href="https://www.facebook.com/InstytutDendrologiiPAN"><img src="/images/stronaGlowna/Facebook.png" /></a></div>
|
|
<div class="ainsta">
|
|
<jdoc:include type="modules" name="youtube" style="none" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php if ( $this->countModules( 'top' ) ) : ?>
|
|
<div class="container-top">
|
|
<jdoc:include type="modules" name="top" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="menu-line"></div>
|
|
<?php if ( $this->countModules( 'menu' ) ) : ?>
|
|
<div class="container-menu">
|
|
<jdoc:include type="modules" name="menu" style="none" />
|
|
|
|
</div>
|
|
<img class="szukajkaa ajajka" src="/images/stronaGlowna/search.png" />
|
|
<?php if ( $this->countModules( 'szukajkai' ) ) : ?>
|
|
<div id="szki2" class="szukajkai">
|
|
<jdoc:include type="modules" name="szukajkai" style="none" />
|
|
</div>`
|
|
<?php endif; ?>
|
|
|
|
<?php endif; ?>
|
|
<div class="image-titles">
|
|
<?php if ( $this->countModules( 'image-big-title' ) ) : ?>
|
|
<div class="container-image-big-title">
|
|
<jdoc:include type="modules" name="image-big-title" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'image-litle-title' ) ) : ?>
|
|
<div class="container-image-litle-title">
|
|
<jdoc:include type="modules" name="image-litle-title" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php if ( $this->countModules( 'socials' ) ) : ?>
|
|
<div class="container-socials">
|
|
<jdoc:include type="modules" name="socials" style="none" />
|
|
</div>
|
|
<?php endif;
|
|
|
|
|
|
|
|
?>
|
|
<?php if ( $this->countModules( 'logo' ) ) : ?>
|
|
<div class="container-logo">
|
|
<jdoc:include type="modules" name="logo" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</header>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $isHome && $this->countModules( 'main' ) ) : ?>
|
|
<main>
|
|
<?php if ( $this->countModules( 'posts-1' ) ) : ?>
|
|
<div class="posts-1">
|
|
<!-- <div class="first-posts">
|
|
<?php /*if ( $this->countModules( 'logo' ) ) : */?>
|
|
<div class="nasze-publikacje">
|
|
<div class="publikacje-header">
|
|
<jdoc:include type="modules" name="naglowek-naszepublikacje" style="none" />
|
|
</div>
|
|
<div class="linkd">
|
|
<jdoc:include type="modules" name="linkd" style="none" />
|
|
</div>
|
|
<jdoc:include type="modules" name="nasze-publikacje" style="none" />
|
|
</div>
|
|
<?php /*endif; */?>
|
|
<?php /*if ( $this->countModules( 'wydarzenia-line' ) ) : */?>
|
|
<div class="wydarzenia-line">
|
|
<jdoc:include type="modules" name="wydarzenia-line" style="none" />
|
|
</div>
|
|
<?php /*endif; */?>
|
|
<?php /*if ( $this->countModules( 'wydarzenia' ) ) : */?>
|
|
|
|
<div class="wydarzenia">
|
|
<div class="wydarzenia-header"=>
|
|
<jdoc:include type="modules" name="naglowek-wydarzenia" style="none" />
|
|
</div>
|
|
<div class="arleft"></div>
|
|
<jdoc:include type="modules" name="wydarzenia" style="none" />
|
|
<div class="arright"></div>
|
|
</div>
|
|
|
|
<?php /*endif; */?>
|
|
</div>-->
|
|
<?php if ( $this->countModules( 'central' ) ) : ?>
|
|
<div class="container-central">
|
|
<jdoc:include type="modules" name="central" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'posts-2' ) ) : ?>
|
|
<div class="posts-2">
|
|
<?php if ( $this->countModules( 'konferencje' ) ) : ?>
|
|
<div class="konferencje">
|
|
<jdoc:include type="modules" name="konferencje" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if($isHome):?>
|
|
<?php if ( $this->countModules( 'posts-3' ) ) : ?>
|
|
<div class="posts-3">
|
|
<?php if ( $this->countModules( 'lines' ) ) : ?>
|
|
<div class="lines">
|
|
<jdoc:include type="modules" name="lines" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'green-buttons' ) ) : ?>
|
|
<div class="green-buttons ">
|
|
<?php if ( $this->countModules( 'ogladaj1' ) ) : ?>
|
|
<div class="ogladaj1">
|
|
<jdoc:include type="modules" name="ogladaj1" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<jdoc:include type="modules" name="green-buttons" style="none" />
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'green-buttons1' ) ) : ?>
|
|
<div class="green-buttons1 ">
|
|
<jdoc:include type="modules" name="green-buttons1" style="none" />
|
|
<?php if ( $this->countModules( 'ogladaj2' ) ) : ?>
|
|
<div class="ogladaj2">
|
|
<jdoc:include type="modules" name="ogladaj2" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'liness' ) ) : ?>
|
|
<div class="liness">
|
|
<jdoc:include type="modules" name="liness" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'posts-4' ) ) : ?>
|
|
<div class="posts-4">
|
|
<jdoc:include type="modules" name="posts-4" style="none" />
|
|
<?php if ( $this->countModules( 'arboretum' ) ) : ?>
|
|
<div class="arboretum">
|
|
<jdoc:include type="modules" name="arboretum" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'posts-5' ) ) : ?>
|
|
<div class="posts-5">
|
|
<jdoc:include type="modules" name="posts-5" style="none" />
|
|
<div class="header-ogloszenia">BIULETYN</div>
|
|
<?php if ( $this->countModules( 'ogloszenia' ) ) : ?>
|
|
<div class="ogloszenia">
|
|
<jdoc:include type="modules" name="ogloszenia" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'posts-6' ) ) : ?>
|
|
<div class="posts-6">
|
|
<jdoc:include type="modules" name="posts-6" style="none" />
|
|
<div class="header-nauka">
|
|
<jdoc:include type="modules" name="naglowek-nauka" style="none" />
|
|
</div>
|
|
<?php if ( $this->countModules( 'NAUKA' ) ) : ?>
|
|
<div class="nauka">
|
|
<jdoc:include type="modules" name="nauka" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'posts-7' ) ) : ?>
|
|
<div class="posts-7">
|
|
<jdoc:include type="modules" name="posts-7" style="none" />
|
|
<div class="header-dendrobiology">DENDROBIOLOGY</div>
|
|
<div class="ps7">
|
|
<?php if ( $this->countModules( 'lines' ) ) : ?>
|
|
<div class="lines">
|
|
<jdoc:include type="modules" name="lines" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'DENDROBIOLOGY' ) ) : ?>
|
|
<div class="dendrobiology">
|
|
<jdoc:include type="modules" name="dendrobiology" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'liness' ) ) : ?>
|
|
<div class="liness">
|
|
<jdoc:include type="modules" name="liness" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'posts-8' ) ) : ?>
|
|
<div class="poznanska-header">
|
|
<jdoc:include type="modules" name="wspolpraca-naglowek" style="none" />
|
|
</div>
|
|
<div class="posts-8">
|
|
|
|
<jdoc:include type="modules" name="posts-8" style="none" />
|
|
|
|
<?php if ( $this->countModules( 'poznanska' ) ) : ?>
|
|
<div class="poznanska-new">
|
|
|
|
<jdoc:include type="modules" name="poznanska" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'liness' ) ) : ?>
|
|
<div class="liness">
|
|
<jdoc:include type="modules" name="liness" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php endif;?>
|
|
</main>
|
|
<?php endif; ?>
|
|
<!-- ARBORETUM-->
|
|
<div class="menus">
|
|
<?php if ( $this->countModules( 'arboretum-header' ) ) : ?>
|
|
<header class="header-ar ">
|
|
<?php if ( $this->countModules( 'arboretum-logo' ) ) : ?>
|
|
<div class="arboretum-logo">
|
|
<jdoc:include type="modules" name="arboretum-logo" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="grid-menu">
|
|
<div class="grid-menu1">
|
|
<?php if ( $this->countModules( 'menugornear' ) ) : ?>
|
|
<div class="menugornear">
|
|
<jdoc:include type="modules" name="menugornear" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'dendro-napis' ) ) : ?>
|
|
<div class="dendro-napis">
|
|
<jdoc:include type="modules" name="dendro-napis" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'mobilemenuin' ) ) : ?>
|
|
<div class="mobilemenuin">
|
|
<jdoc:include type="modules" name="mobilemenuin" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'socials-ar' ) ) : ?>
|
|
<div class="socials-ar">
|
|
<div class="socials-arboretum">
|
|
<a href="https://www.idpan.poznan.pl/pl/logo-hr" class="hr"><img src="/images/Arboretum/hr.png"></a>
|
|
<div class="bip-ar">
|
|
<jdoc:include type="modules" name="linkbip" style="none" />
|
|
|
|
|
|
</div>
|
|
<div class="sc">
|
|
<div><img src="/images/stronaGlowna/Anorm.png" /></div>
|
|
<div><img src="/images/stronaGlowna/Apl.png" /></div>
|
|
|
|
<div><img src="/images/stronaGlowna/Alus.png" /></div>
|
|
</div>
|
|
<div class="contrast">
|
|
<div><img src="/images/stronaGlowna/Contrast.png" /></div>
|
|
<div><img src="/images/stronaGlowna/Ellipse_1.png" /></div>z
|
|
</div>
|
|
<div class="languages laguagg">
|
|
<jdoc:include type="modules" name="laguagg" style="none" />
|
|
|
|
|
|
|
|
</div>
|
|
<?php if ( $this->countModules( 'socials-fas' ) ) : ?>
|
|
<div class="socc df">
|
|
<div><a href="https://www.facebook.com/arboretum.kornickie" /><img src="/images/stronaGlowna/Facebook.png" /></a></div>
|
|
<div class="">
|
|
<jdoc:include type="modules" name="youtube" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<div class="socc df">
|
|
<div><a href="https://www.facebook.com/InstytutDendrologiiPAN"><img src="/images/stronaGlowna/Facebook.png" /></a></div>
|
|
<div class="">
|
|
<jdoc:include type="modules" name="youtube" style="none" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<jdoc:include type="modules" name="socials-ar" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'socials-fas' ) ) : ?>
|
|
<div class="socials-ar">
|
|
<div class="socials-arboretum">
|
|
<a href="https://www.idpan.poznan.pl/pl/logo-hr" class="hr"><img src="/images/Arboretum/hr.png"></a>
|
|
<div class="bip-ar">
|
|
<jdoc:include type="modules" name="linkbip" style="none" />
|
|
</div>
|
|
<div class="sc">
|
|
<div><img src="/images/stronaGlowna/Anorm.png" /></div>
|
|
<div><img src="/images/stronaGlowna/Apl.png" /></div>
|
|
|
|
<div><img src="/images/stronaGlowna/Alus.png" /></div>
|
|
</div>
|
|
<div class="contrast">
|
|
<div><img src="/images/stronaGlowna/Contrast.png" /></div>
|
|
<div><img src="/images/stronaGlowna/Ellipse_1.png" /></div>z
|
|
</div>
|
|
<div class="languages laguagg">
|
|
<jdoc:include type="modules" name="laguagg" style="none" />
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="socc df">
|
|
<div><a href="https://www.facebook.com/arboretum.kornickie"><img src="/images/stronaGlowna/Facebook.png" /></a></div>
|
|
<div class="">
|
|
<jdoc:include type="modules" name="youtube" style="none" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<jdoc:include type="modules" name="socials-fas" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'socials-bip' ) ) : ?>
|
|
<div class="socials-ar socials-bip">
|
|
<div class="socials-arboretum">
|
|
<a href="https://www.idpan.poznan.pl/pl/logo-hr" class="hr"><img src="/images/Arboretum/hr.png"></a>
|
|
<div class="bip-ar">
|
|
<jdoc:include type="modules" name="linkbip" style="none" />
|
|
</div>
|
|
<div class="sc">
|
|
<div><img src="/images/stronaGlowna/Anorm.png" /></div>
|
|
<div><img src="/images/stronaGlowna/Apl.png" /></div>
|
|
|
|
<div><img src="/images/stronaGlowna/Alus.png" /></div>
|
|
</div>
|
|
<div class="contrast">
|
|
<div><img src="/images/stronaGlowna/Contrast.png" /></div>
|
|
<div><img src="/images/stronaGlowna/Ellipse_1.png" /></div>
|
|
</div>
|
|
<div class="languages">
|
|
<jdoc:include type="modules" name="laguagg" style="none" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
<div class="socc">
|
|
<div><a href="https://www.facebook.com/InstytutDendrologiiPAN"><img src="/images/stronaGlowna/Facebook.png" /></a></div>
|
|
<div>
|
|
<jdoc:include type="modules" name="youtube" style="none" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php if ( $this->countModules( 'arboretum-nav' ) ) : ?>
|
|
<div class="ar-lines"></div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'arboretum-nav1' ) ) : ?>
|
|
<div class="ar-lines cwhiteb"></div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'dendro-menu' ) ) : ?>
|
|
|
|
<div class="dendro-menu">
|
|
<jdoc:include type="modules" name="dendro-menu" style="none" />
|
|
<img class="szukajkaas szukkk" src="/images/stronaGlowna/search.png" />
|
|
<div id="szki2" class="szukajkai">
|
|
<jdoc:include type="modules" name="szukajkai" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'menugornear1' ) ) : ?>
|
|
<div class="menugornear1 menugornear">
|
|
<jdoc:include type="modules" name="menugornear1" style="none" />
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<!--Szkoła Doktorska menu-->
|
|
<?php if ( $this->countModules( 'menu-szkola' ) ) : ?>
|
|
<div class="menu-szkola ">
|
|
<jdoc:include type="modules" name="menu-szkola" style="none" />
|
|
<img class="szukajkaas" src="/images/stronaGlowna/search.png" />
|
|
<div id="szki" class="szukajkai">
|
|
<jdoc:include type="modules" name="szukajkai" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--Szkoła Doktorska menu-->
|
|
<!--O instytucie submenu-->
|
|
<?php if ( $this->countModules( 'menu-instytut' ) ) : ?>
|
|
<div class="menu-instytut menugornear">
|
|
<jdoc:include type="modules" name="menu-instytut" style="none" />
|
|
<img class="szukajkaas" src="/images/stronaGlowna/search.png" />
|
|
<div id="szki" class="szukajkai">
|
|
<jdoc:include type="modules" name="szukajkai" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'menu-arbo' ) ) : ?>
|
|
<div class="menu-instytut menugornear menu-arbo">
|
|
<jdoc:include type="modules" name="menu-arbo" style="none" />
|
|
<img class="szukajkaas" src="/images/stronaGlowna/search.png" />
|
|
<div id="szki" class="szukajkai">
|
|
<jdoc:include type="modules" name="szukajkai" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!--O instytucie submenu-->
|
|
|
|
|
|
|
|
</div>
|
|
</header>
|
|
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'oinstytucie-kreska' ) ) : ?>
|
|
<div class="oinstytucie-kreska"></div>
|
|
<?php endif; ?>
|
|
<!-- ARBORETUM-->
|
|
</div>
|
|
|
|
<!--O instytucie-->
|
|
|
|
<div class="okruszki okrd1">
|
|
<jdoc:include type="modules" name="okruszki" style="none" />
|
|
</div>
|
|
<?php if ( $this->countModules( 'oinstytucie-naglowek' ) ) : ?>
|
|
|
|
<div class="oinstytucie-naglowek">
|
|
<jdoc:include type="modules" name="oinstytucie-naglowek" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'oinstytucie-grid' ) ) : ?>
|
|
<div class="oinstytucie-grid">
|
|
<?php if ( $this->countModules( 'liness3' ) ) : ?>
|
|
<div class="liness3 lineleft">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'oinstytucie-learze' ) ) : ?>
|
|
<div class="oinstytucie-learze">
|
|
<jdoc:include type="modules" name="oinstytucie-naglowek" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<div class="wszyscy-lekarze">
|
|
|
|
|
|
<?php if ( $this->countModules( 'kierownikzakladu' ) ) : ?>
|
|
<div class="kier-zak">
|
|
<div class="kierownikzakladu">
|
|
<jdoc:include type="modules" name="kierownikzakladu" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'kierownikzakladu-text' ) ) : ?>
|
|
<div class="kierownikzakladu-text">
|
|
<jdoc:include type="modules" name="kierownikzakladu-text" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'kierownikzakladu1' ) ) : ?>
|
|
<div class="kier-zak">
|
|
<div class="kierownikzakladu">
|
|
<jdoc:include type="modules" name="kierownikzakladu1" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'kierownikzakladu-text1' ) ) : ?>
|
|
<div class="kierownikzakladu-text">
|
|
<jdoc:include type="modules" name="kierownikzakladu-text1" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'kierownikzakladu2' ) ) : ?>
|
|
<div class="kier-zak">
|
|
<div class="kierownikzakladu">
|
|
<jdoc:include type="modules" name="kierownikzakladu2" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'kierownikzakladu-text2' ) ) : ?>
|
|
<div class="kierownikzakladu-text">
|
|
<jdoc:include type="modules" name="kierownikzakladu-text2" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'kierownikzakladu3' ) ) : ?>
|
|
<div class="kier-zak">
|
|
<div class="kierownikzakladu">
|
|
<jdoc:include type="modules" name="kierownikzakladu3" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'kierownikzakladu-text3' ) ) : ?>
|
|
<div class="kierownikzakladu-text">
|
|
<jdoc:include type="modules" name="kierownikzakladu-text3" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'kierownikzakladu4' ) ) : ?>
|
|
<div class="kier-zak">
|
|
<div class="kierownikzakladu">
|
|
<jdoc:include type="modules" name="kierownikzakladu4" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'kierownikzakladu-text4' ) ) : ?>
|
|
<div class="kierownikzakladu-text">
|
|
<jdoc:include type="modules" name="kierownikzakladu-text4" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'kierownikzakladu5' ) ) : ?>
|
|
<div class="kier-zak">
|
|
<div class="kierownikzakladu">
|
|
<jdoc:include type="modules" name="kierownikzakladu5" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'kierownikzakladu-text5' ) ) : ?>
|
|
<div class="kierownikzakladu-text">
|
|
<jdoc:include type="modules" name="kierownikzakladu-text5" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<div class="grid-profesorzy">
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy1' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy1" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy2' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy2" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy3' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy3" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy4' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy4" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy5' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy5" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy6' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy6" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy7' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy7" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy8' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy8" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy9' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy9" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy10' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy10" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy11' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy11" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy12' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy12" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy13' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy13" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy14' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy14" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy15' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy15" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy16' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy16" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy17' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy17" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy18' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy18" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy19' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy19" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy20' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy20" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy21' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy21" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy22' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy22" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy23' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy23" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy24' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy24" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy25' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy25" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy26' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy26" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy27' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy27" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy28' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy28" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy29' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy29" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="prof-col">
|
|
<?php if ( $this->countModules( 'oinstytucie-profesorzy30' ) ) : ?>
|
|
<div class="oinstytucie-profesorzy">
|
|
<jdoc:include type="modules" name="oinstytucie-profesorzy30" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php if ( $this->countModules( 'liness3' ) ) : ?>
|
|
<div class="liness3 lineright">
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'tematykabadawcza-grid' ) ) : ?>
|
|
<div class="tematykabadawcza-grid">
|
|
<?php if ( $this->countModules( 'liness3' ) ) : ?>
|
|
<div class="liness3 lineright">
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="tematyka">
|
|
|
|
<?php if ( $this->countModules( 'tematykabadawcza-naglowek' ) ) : ?>
|
|
<div class="tematykabadawcza-naglowek">
|
|
<jdoc:include type="modules" name="tematykabadawcza-naglowek" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'tematykabadawcza-text' ) ) : ?>
|
|
<div class="tematykabadawcza-text">
|
|
<jdoc:include type="modules" name="tematykabadawcza-text" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'liness3' ) ) : ?>
|
|
<div class="liness3 lineleft">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'projektyipublikacje-grid' ) ) : ?>
|
|
<div class="projektyipublikacje-grid">
|
|
|
|
<?php if ( $this->countModules( 'liness3' ) ) : ?>
|
|
<div class="liness3 lineleft">
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'publikacje-naglowek' ) ) : ?>
|
|
<div class="publikacje-naglowek">
|
|
<jdoc:include type="modules" name="publikacje-naglowek" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'projektyipublikacje-grid1' ) ) : ?>
|
|
<div class="projektyipublikacje-grid1">
|
|
|
|
<?php if ( $this->countModules( 'publikacje-zdj1' ) ) : ?>
|
|
<div class="publikacje-zdj1">
|
|
<jdoc:include type="modules" name="publikacje-zdj1" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'publikacje-zdj2' ) ) : ?>
|
|
<div class="publikacje-zdj2">
|
|
<jdoc:include type="modules" name="publikacje-zdj2" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--O instytucie-->
|
|
|
|
|
|
<!--Projekt naukowy-->
|
|
|
|
<?php if ( $this->countModules( 'stronaprojektu-naglowek' ) ) : ?>
|
|
<div class="strona-projektu">
|
|
<div class="stronaprojektu-naglowek">
|
|
<div class="stronaprojektu-text">
|
|
<jdoc:include type="modules" name="stronaprojektu-naglowek" style="none" />
|
|
</div>
|
|
|
|
</div>
|
|
<?php if ( $this->countModules( 'liness3' ) ) : ?>
|
|
|
|
<div class="liness3 lineleft">
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'opisprojektu-grid' ) ) : ?>
|
|
|
|
<div class="opisprojektu-grid">
|
|
<?php if ( $this->countModules( 'liness3' ) ) : ?>
|
|
<div class="line-down1">
|
|
<div class="liness3 lineleft">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="opis-projektu">
|
|
<?php if ( $this->countModules( 'opisprojektu-link' ) ) : ?>
|
|
<div class="opisprojektu-link">
|
|
<jdoc:include type="modules" name="opisprojektu-link" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'opisprojektu-naglowek' ) ) : ?>
|
|
<div class="opisprojektu-naglowek">
|
|
<jdoc:include type="modules" name="opisprojektu-naglowek" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'opisprojektu-text' ) ) : ?>
|
|
<div class="opisprojektu-text">
|
|
<jdoc:include type="modules" name="opisprojektu-text" style="none" />
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'opisprojektu-zdjecia' ) ) : ?>
|
|
<div class="opisprojektu-zdjecia">
|
|
<jdoc:include type="modules" name="opisprojektu-zdjecia" style="none" />
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<?php if ( $this->countModules( 'liness3' ) ) : ?>
|
|
<div class="line-up">
|
|
<div class="liness3 lineleft">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!--Projekt naukowy-->
|
|
|
|
|
|
<!--Szkoła Doktorska -->
|
|
<?php if ( $this->countModules( 'naglowek-szkola' ) ) : ?>
|
|
|
|
<div class="grid-szkolad">
|
|
<?php if ( $this->countModules( 'liness2' ) ) : ?>
|
|
<div class="liness2 lineleft">
|
|
<jdoc:include type="modules" name="liness2" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="grid-szkola1">
|
|
<div class="okruszki ">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
<div class="naglowek-szkola">
|
|
<jdoc:include type="modules" name="naglowek-szkola" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="op-up">
|
|
|
|
|
|
<?php if ( $this->countModules( 'text-szkola' ) ) : ?>
|
|
<div class="opisizdjecie">
|
|
<div class="text-szkola">
|
|
<jdoc:include type="modules" name="text-szkola" style="none" />
|
|
|
|
|
|
<?php if ( $this->countModules( 'dolaczdonas-szkola' ) ) : ?>
|
|
<div class="dolaczdonas-szkola">
|
|
<jdoc:include type="modules" name="dolaczdonas-szkola" style="none" />
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'zdjecie-szkola' ) ) : ?>
|
|
<div class="zdjecie-szkola">
|
|
<jdoc:include type="modules" name="zdjecie-szkola" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
<?php if ( $this->countModules( 'liness2' ) ) : ?>
|
|
<div class="liness2 lineright">
|
|
<jdoc:include type="modules" name="liness2" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<!--Szkoła Doktorska -->
|
|
|
|
|
|
<!--Seminaria i wykłady-->
|
|
<?php if ( $this->countModules( 'menu-seminaria' ) ) : ?>
|
|
<div class="grid-menu-seminaria">
|
|
<div class="menu-seminaria">
|
|
<jdoc:include type="modules" name="menu-seminaria" style="none" />
|
|
</div>
|
|
<div class="two-lines1">
|
|
<div class="liness4 lineright">
|
|
<jdoc:include type="modules" name="liness4" style="none" />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!--Artykuły seminaria-->
|
|
<div class="grid-child container-component">
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
</div>
|
|
<!--Artykuły seminaria-->
|
|
|
|
|
|
|
|
<div class="two-lines">
|
|
<div class="liness4 lineright">
|
|
<jdoc:include type="modules" name="liness4" style="none" />
|
|
</div>
|
|
<div class="liness4 lineright liness-sec">
|
|
<jdoc:include type="modules" name="liness4" style="none" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!--Seminaria i wykłady-->
|
|
|
|
<!--Strona pracownika naukowego-->
|
|
<?php if ( $this->countModules( 'pracownik-naukowy' ) ) : ?>
|
|
<div class="pracownik-naukowy">
|
|
|
|
<?php if ( $this->countModules( 'liness4' ) ) : ?>
|
|
<div class="liness4 lineright lef">
|
|
<jdoc:include type="modules" name="liness4" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="pracownik-grids">
|
|
<div class="pracowniknaukowy-grid">
|
|
|
|
<?php if ( $this->countModules( 'pracownik-zdjecie' ) ) : ?>
|
|
<div class="pracownik-zdjecie">
|
|
<jdoc:include type="modules" name="pracownik-zdjecie" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'pracownik-opis' ) ) : ?>
|
|
<div class="pracownik-opis">
|
|
<jdoc:include type="modules" name="pracownik-opis" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</div>
|
|
<div class="pracownik-grid1">
|
|
<?php if ( $this->countModules( 'pracownik-projects' ) ) : ?>
|
|
<div class="proj">
|
|
<div class="pracownik-projectsheader">PROJECTS</div>
|
|
|
|
<div class="pracownik-projects">
|
|
<jdoc:include type="modules" name="pracownik-projects" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="publ">
|
|
<?php if ( $this->countModules( 'pracownik-publications' ) ) : ?>
|
|
<div class="pracownik-publicationsheader">PUBLICATIONS</div>
|
|
<div class="pracownik-publications">
|
|
<jdoc:include type="modules" name="pracownik-publications" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php if ( $this->countModules( 'liness4' ) ) : ?>
|
|
<div class="liness4 lineright lef">
|
|
<jdoc:include type="modules" name="liness4" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--Strona pracownika naukowego-->
|
|
|
|
<!--Strona dla Danych adresowych wszystkich Pracowników -->
|
|
|
|
<?php if ( $this->countModules( 'naglowek-wszyscypracownicy' ) ) : ?>
|
|
<div class="okruszki okrd okrd1">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
<div class="naglowek-wszyscypracownicy">
|
|
<?php if ( $this->countModules( 'wszyscypracownicy-adres' ) ) : ?>
|
|
<div class="wszyscypracownicy-adres">
|
|
<jdoc:include type="modules" name="wszyscypracownicy-adres" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'wszyscypracownicy-adres1' ) ) : ?>
|
|
<div class="wszyscypracownicy-adres1">
|
|
<jdoc:include type="modules" name="wszyscypracownicy-adres1" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<?php if ( $this->countModules( 'wszyscypracownicy-tabela' ) ) : ?>
|
|
<div class="wszyscypracownicy-tabela">
|
|
<jdoc:include type="modules" name="wszyscypracownicy-tabela" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<!--Strona dla Danych adresowych wszystkich Pracowników-->
|
|
|
|
|
|
|
|
<!--Przykładowe posty-->
|
|
<?php if ( $this->countModules( 'menu-posty' ) ) : ?>
|
|
|
|
<div class="nposts">
|
|
|
|
<div class="okruszki ">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
<jdoc:include type="modules" name="menu-posty" style="none" />
|
|
</div>
|
|
<div class="grid-child container-component">
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<!--Przykładowe posty-->
|
|
|
|
<!--BIP-->
|
|
<?php if ( $this->countModules( 'menu-bip' ) ) : ?>
|
|
|
|
<div class="grid-bip">
|
|
<div class="bip-articlesinformacja">
|
|
<div class="bipox">BIULETYN INFORMACJI PUBLICZNEJ</div>
|
|
</div>
|
|
<div class="menu-bip">
|
|
|
|
<?php if ( $this->countModules( 'socials-bip' ) ) : ?>
|
|
<div class="socials-ar1">
|
|
<a href="https://www.idpan.poznan.pl/pl/logo-hr" class="hr"><img src="/images/Arboretum/hr.png"></a>
|
|
<div class="socials-arboretum socials-bip">
|
|
|
|
<div class="sc">
|
|
<div><img src="/images/stronaGlowna/Anorm.png" /></div>
|
|
<div><img src="/images/stronaGlowna/Apl.png" /></div>
|
|
|
|
<div><img src="/images/stronaGlowna/Alus.png" /></div>
|
|
</div>
|
|
<div class="contrast">
|
|
<div><img src="/images/stronaGlowna/Contrast.png" /></div>
|
|
<div><img src="/images/stronaGlowna/Ellipse_1.png" /></div>
|
|
</div>
|
|
<div class="languages">
|
|
<jdoc:include type="modules" name="laguagg" style="none" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'logo-bip' ) ) : ?>
|
|
<div class="logo-bip">
|
|
<jdoc:include type="modules" name="logo-bip" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'bip-wyszukiwarka' ) ) : ?>
|
|
<div class="bip-wyszukiwarka">
|
|
<jdoc:include type="modules" name="bip-wyszukiwarka" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<jdoc:include type="modules" name="menu-bip" style="none" />
|
|
|
|
|
|
|
|
</div>
|
|
<div class="bip-articles">
|
|
<div class="grid-child container-component">
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
<!--BIP-->
|
|
|
|
<!--Dendorbiology-->
|
|
<?php if ( $this->countModules( 'dendro-grid' ) ) : ?>
|
|
|
|
|
|
<div class="dendro-grid">
|
|
|
|
<?php if ( $this->countModules( 'liness3' ) ) : ?>
|
|
<div class="liness3 lineleft dendro">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'dendro-articles' ) ) : ?>
|
|
<div>
|
|
<div class="grid-child container-component dendro-arty">
|
|
<div class="okruszki ">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="dendro-tekstlogo">
|
|
<?php if ( $this->countModules( 'dendro-logo' ) ) : ?>
|
|
<div class="dendro-logo">
|
|
<div class="okruszki ">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
<jdoc:include type="modules" name="dendro-logo" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'dendro-tekst-podlogo' ) ) : ?>
|
|
<div class="dendro-tekst-podlogo">
|
|
|
|
<jdoc:include type="modules" name="dendro-tekst-podlogo" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<div class="dendro-tekstprawa">
|
|
|
|
<?php if ( $this->countModules( 'dendro-impfaktor' ) ) : ?>
|
|
<div class="dendro-impfaktor">
|
|
<jdoc:include type="modules" name="dendro-impfaktor" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'dendro-podimpfaktor' ) ) : ?>
|
|
<div class="dendro-podimpfaktor">
|
|
<jdoc:include type="modules" name="dendro-podimpfaktor" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
<?php if ( $this->countModules( 'dendro-grid1' ) ) : ?>
|
|
<div class="dendro-grid1">
|
|
|
|
<div class="dendro-grid1left">
|
|
|
|
<?php if ( $this->countModules( 'dendro-publisher' ) ) : ?>
|
|
<div class="dendro-publisher">
|
|
<jdoc:include type="modules" name="dendro-publisher" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'dendro-editor' ) ) : ?>
|
|
<div class="dendro-editor">
|
|
<jdoc:include type="modules" name="dendro-editor" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'dendro-associate' ) ) : ?>
|
|
<div class="dendro-associate">
|
|
<jdoc:include type="modules" name="dendro-associate" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
</div>
|
|
<div class="dendro-grid1right">
|
|
|
|
|
|
<?php if ( $this->countModules( 'dendro-codeditors' ) ) : ?>
|
|
<div class="dendro-codeditors">
|
|
<jdoc:include type="modules" name="dendro-codeditors" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'dendro-copyeditor' ) ) : ?>
|
|
<div class="dendro-copyeditor">
|
|
<jdoc:include type="modules" name="dendro-copyeditor" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'dendro-editorial' ) ) : ?>
|
|
<div class="dendro-editorial">
|
|
<jdoc:include type="modules" name="dendro-editorial" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<?php endif; ?>
|
|
|
|
<!--Dendrobiology-->
|
|
<?php if ( $this->countModules( 'excel' ) ) : ?>
|
|
<div class="okruszki okrd1">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
<div class="filtrtektsnad">
|
|
<jdoc:include type="modules" name="filtrtektsnad" style="none" />
|
|
</div>
|
|
<div class="filtry">
|
|
<jdoc:include type="modules" name="filtry" style="none" />
|
|
|
|
</div>
|
|
<div class="filtrtekstpoad">
|
|
<jdoc:include type="modules" name="filtrtekstpoad" style="none" />
|
|
</div>
|
|
<div class="grid-child container-component excel">
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
<!--Dendrobiology Content-->
|
|
<?php if ( $this->countModules( 'dendro-menucontent' ) ) : ?>
|
|
<div class="grid-dendrocontent">
|
|
<div class="dendro-menucontent menu-seminaria menugornear1">
|
|
<jdoc:include type="modules" name="dendro-menucontent" style="none" />
|
|
</div>
|
|
|
|
<div class="dendro-art">
|
|
<?php if ( $this->countModules( 'DENDROBIOLOGY' ) ) : ?>
|
|
<div class="okruszki ml ">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
<div class="dmost">MOST POPULAR ARTICLES</div>
|
|
<div class="dendrobiology">
|
|
|
|
<jdoc:include type="modules" name="dendrobiology" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="grid-child container-component">
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="liness3 lineleft dendros">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
<!--Dendrobiology Content-->
|
|
|
|
|
|
<!--Dendrobiology Content-->
|
|
<?php if ( $this->countModules( 'dendro-menucontent1' ) ) : ?>
|
|
<div class="grid-dendrocontent gdnone">
|
|
<div class="dendro-menucontent menu-seminaria menugornear1">
|
|
<jdoc:include type="modules" name="dendro-menucontent1" style="none" />
|
|
</div>
|
|
|
|
<div class="dendro-art">
|
|
<?php if ( $this->countModules( 'DENDROBIOLOGY' ) ) : ?>
|
|
<div class="dmost">MOST POPULAR ARTICLES</div>
|
|
<div class="dendrobiology">
|
|
|
|
<jdoc:include type="modules" name="dendrobiology" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="grid-child container-component">
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="liness3 lineleft dendros">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
<!--Dendrobiology Content-->
|
|
|
|
<!--O instytucie zarządzenia dyrektora -->
|
|
<?php if ( $this->countModules( 'oinstytucie-zarzadzeniadyrektora' ) ) : ?>
|
|
<div class="grid-dendrocontent">
|
|
<div class="dendro-menucontent menu-seminaria menugornear1">
|
|
<jdoc:include type="modules" name="oinstytucie-zarzadzeniadyrektora" style="none" />
|
|
</div>
|
|
|
|
<div class="dendro-art">
|
|
<?php if ( $this->countModules( 'DENDROBIOLOGY' ) ) : ?>
|
|
<div class="dmost">MOST POPULAR ARTICLES</div>
|
|
<div class="dendrobiology">
|
|
|
|
<jdoc:include type="modules" name="dendrobiology" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<div class="grid-child container-component">
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="liness3 lineleft dendros">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
<!--O instytucie zarządzenia dyrektora-->
|
|
|
|
|
|
|
|
<!--O instytucie kafelki-->
|
|
<?php if ( $this->countModules( 'oinstytucie-kafelki' ) ) : ?>
|
|
<div class="grid-kafelki">
|
|
|
|
<div class="oinstytucie-kafelki">
|
|
<jdoc:include type="modules" name="oinstytucie-kafelki" style="none" />
|
|
</div>
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--O instytucie kafelki-->
|
|
|
|
|
|
|
|
|
|
<!--O arboretum-->
|
|
<?php if ( $this->countModules( 'grid-arboretum' ) ) : ?>
|
|
<div class="okruszki okrd1">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
|
|
<div class="grid-arboretum">
|
|
<?php if ( $this->countModules( 'liness2x' ) ) : ?>
|
|
|
|
<div class="liness2 lineleft">
|
|
<jdoc:include type="modules" name="liness2x" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<div class="center-arboretum">
|
|
<div class="up-arcenter">
|
|
<div class="up-arcenter1">
|
|
<?php if ( $this->countModules( 'arboretum-nappod' ) ) : ?>
|
|
<div class="arboretum-nappod">
|
|
<jdoc:include type="modules" name="arboretum-nappod" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'arboretum-nappod1' ) ) : ?>
|
|
<div class="arboretum-nappod1">
|
|
<jdoc:include type="modules" name="arboretum-nappod1" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php if ( $this->countModules( 'arboretum-nappodzd' ) ) : ?>
|
|
<div class="arboretum-nappodzd">
|
|
<jdoc:include type="modules" name="arboretum-nappodzd" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="down-center">
|
|
|
|
<?php if ( $this->countModules( 'arboretumgodziny-otwarcia' ) ) : ?>
|
|
<div class="arboretumgodziny-otwarcia">
|
|
<jdoc:include type="modules" name="arboretumgodziny-otwarcia" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<div class="arinside1`">
|
|
<?php if ( $this->countModules( 'arboretumgodziny-otwarciaobok' ) ) : ?>
|
|
<div class="arboretumgodziny-otwarciaobok">
|
|
<jdoc:include type="modules" name="arboretumgodziny-otwarciaobok" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'arboretumgodziny-otwarciabuttons' ) ) : ?>
|
|
<div class="arboretumgodziny-otwarciabuttons">
|
|
<jdoc:include type="modules" name="arboretumgodziny-otwarciabuttons" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'arboretumgodziny-zobaczcenybiletow' ) ) : ?>
|
|
<div class="arboretumgodziny-zobaczcenybiletow">
|
|
<jdoc:include type="modules" name="arboretumgodziny-zobaczcenybiletow" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php if ( $this->countModules( 'liness2x' ) ) : ?>
|
|
<div class="liness2 lineright">
|
|
<jdoc:include type="modules" name="liness2x" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
<?php if ( $this->countModules( 'posts-44' ) ) : ?>
|
|
|
|
<div class="posts-4">
|
|
<jdoc:include type="modules" name="posts-44" style="none" />
|
|
<?php if ( $this->countModules( 'arboretum-ls' ) ) : ?>
|
|
<div class="arboretum">
|
|
<jdoc:include type="modules" name="arboretum-ls" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'arboretum-kafelki' ) ) : ?>
|
|
<div class="arboretum-kafle">
|
|
<div class="formy-zwiedzania-header">
|
|
<jdoc:include type="modules" name="tekstformyzwiedzania" style="none" />
|
|
</div>
|
|
<div class=" grid-kafarbo">
|
|
|
|
<div class="oinstytucie-kafelki ">
|
|
<jdoc:include type="modules" name="arboretum-kafelki" style="none" />
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'krzywe-zdjecia' ) ) : ?>
|
|
<div class="krzywe-zdjecia">
|
|
<jdoc:include type="modules" name="krzywe-zdjecia" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<?php endif; ?>
|
|
|
|
<!--O arboretum-->
|
|
<!--Formy zwiedzania -->
|
|
<?php if ( $this->countModules( 'formy-zwiedzaniatekst' ) ) : ?>
|
|
<div class="formy-zwiedzaniatekstm">
|
|
<div class="formy-zwiedzaniatekst-header">FORMY ZWIEDZANIA</div>
|
|
<jdoc:include type="modules" name="formy-zwiedzaniatekst" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--Formy zwiedzania -->
|
|
<div class="teksty-formyzwiedzania">
|
|
|
|
<!--Formy zwiedzania zwiedzanie z audio przewodnikiem-->
|
|
<!--Zwiedzanie z przewodnikiem-->
|
|
|
|
<?php if ( $this->countModules( 'zwiedzanie-z-przewodnikiem' ) ) : ?>
|
|
<div class="zwiedzanie-z-przewodnikiem">
|
|
<jdoc:include type="modules" name="zwiedzanie-z-przewodnikiem" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!--Zwiedzanie z przewodnikiem-->
|
|
|
|
<!--zwiedzanie-indywidualne-->
|
|
|
|
<?php if ( $this->countModules( 'zwiedzanie-indywidualne' ) ) : ?>
|
|
<div class="zwiedzanie-indywidualne">
|
|
<jdoc:include type="modules" name="zwiedzanie-indywidualne" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!--zwiedzanie-indywidualne-->
|
|
|
|
|
|
|
|
<!--zwiedzanie-z grą terenową-->
|
|
|
|
<?php if ( $this->countModules( 'zwiedzanie-zgraterenowa' ) ) : ?>
|
|
<div class="zwiedzanie-zgraterenowa">
|
|
<jdoc:include type="modules" name="zwiedzanie-zgraterenowa" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!--zwiedzanie-z grą terenową-->
|
|
|
|
|
|
|
|
|
|
<!--zajecia edukacyjne-->
|
|
|
|
<?php if ( $this->countModules( 'zajecia-edukacyjne' ) ) : ?>
|
|
<div class="zajecia-edukacyjne">
|
|
<jdoc:include type="modules" name="zajecia-edukacyjne" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!--zajęcia edukacyjne-->
|
|
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'zwiedzanie-z-audio-przewodnikiem' ) ) : ?>
|
|
<div class="zwiedzanie-z-audio-przewodnikiem">
|
|
<div class="formy-zwiedzaniatekst-header">ZWIEDZANIE Z AUDIOPRZEWODNIKIEM</div>
|
|
<jdoc:include type="modules" name="zwiedzanie-z-audio-przewodnikiem" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'grid-audioprzewodnik' ) ) : ?>
|
|
<div class="grid-audioprzewodnik">
|
|
|
|
|
|
|
|
|
|
|
|
<!--Audio przewodnik-->
|
|
<?php if ( $this->countModules( 'audio-tektoboktelefonu' ) ) : ?>
|
|
<div class="audio-tektoboktelefonu">
|
|
<jdoc:include type="modules" name="audio-tektoboktelefonu" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'audio-telefon' ) ) : ?>
|
|
<div class="audio-telefon">
|
|
<jdoc:include type="modules" name="audio-telefon" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--Audio przewodnik-->
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--Formy zwiedzania zwiedzanie z audio przewodnikiem-->
|
|
</div>
|
|
<!--Imprezy edukacyjno-Przyrodnicze-->
|
|
|
|
<?php if ( $this->countModules( 'imprezy-edukacyjno-przyrodnicze' ) ) : ?>
|
|
<div class="imprezy-edukacyjno-przyrodnicze-grid">
|
|
<div class="imprezy-edukacyjno-przyrodnicze-header">IMPREZY EDUKACYJNO PRZYRODNICZE</div>
|
|
|
|
|
|
|
|
<!--zwiastuny wiosny-->
|
|
<?php if ( $this->countModules( 'imprezy-zwiastunywiosny' ) ) : ?>
|
|
<div class="grid-zwiastunwiosny">
|
|
<div class="imprezy-tekstpodmenu5">
|
|
<jdoc:include type="modules" name="imprezy-zwiastunywiosny" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'imprezy-zawartosczwiastunywiosny1' ) ) : ?>
|
|
<!--aboretum imprezy edukacyjne artykuł-->
|
|
<div class="imprezy-zawartosczwiastunywiosny1 imprezy-zawartosczwiastunywiosny1">
|
|
<jdoc:include type="modules" name="imprezy-zawartosczwiastunywiosny1" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'imprezy-zawartosczwiastunywiosny' ) ) : ?>
|
|
<!--aboretum imprezy edukacyjne artykuł-->
|
|
<div class="imprezy-zawartosczwiastunywiosny">
|
|
<jdoc:include type="modules" name="imprezy-zawartosczwiastunywiosny" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<!--zwiastuny wiosny-->
|
|
|
|
|
|
|
|
<!--umajone arboretum-->
|
|
<?php if ( $this->countModules( 'imprezy-umajonearboretum' ) ) : ?>
|
|
<div class="grid-umajonearboretum">
|
|
<div class="imprezy-tekstpodmenu4">
|
|
<jdoc:include type="modules" name="imprezy-umajonearboretum" style="none" />
|
|
</div>
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'imprezy-umajonearboretumgaleria' ) ) : ?>
|
|
<!--aboretum imprezy edukacyjne artykuł-->
|
|
<div class="imprezy-umajonearboretumgaleria">
|
|
<jdoc:include type="modules" name="imprezy-umajonearboretumgaleria" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'imprezy-zawartosumajonearboretum' ) ) : ?>
|
|
<div class="imprezy-zawartosumajonearboretum">
|
|
<jdoc:include type="modules" name="imprezy-zawartosumajonearboretum" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<!--umajone arboretum-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--Białe bzy-->
|
|
|
|
<?php if ( $this->countModules( 'imprezy-bialebzy' ) ) : ?>
|
|
<div class="grid-bialebzy">
|
|
<div class="imprezy-tekstpodmenu3">
|
|
<jdoc:include type="modules" name="imprezy-bialebzy" style="none" />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'imprezy-zawartosbialebzygaleria' ) ) : ?>
|
|
<div class="imprezy-zawartosbialebzygaleria">
|
|
<jdoc:include type="modules" name="imprezy-zawartosbialebzygaleria" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'imprezy-zawartosbialebzy' ) ) : ?>
|
|
<div class="imprezy-zawartosbialebzy">
|
|
<jdoc:include type="modules" name="imprezy-zawartosbialebzy" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
<!--Białe bzy-->
|
|
|
|
|
|
|
|
|
|
|
|
<!--Dni azili-->
|
|
<?php if ( $this->countModules( 'imprezy-dniazili' ) ) : ?>
|
|
<div class="grid-dni">
|
|
<div class="imprezy-tekstpodmenu2">
|
|
<jdoc:include type="modules" name="imprezy-dniazili" style="none" />
|
|
</div>
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'imprezy-dniaziligaleria' ) ) : ?>
|
|
<div class="imprezy-dniaziligaleria">
|
|
<jdoc:include type="modules" name="imprezy-dniaziligaleria" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'imprezy-zawartosdniazili' ) ) : ?>
|
|
<div class="imprezy-zawartosdniazili">
|
|
<jdoc:include type="modules" name="imprezy-zawartosdniazili" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
<!--Dni azili-->
|
|
|
|
|
|
|
|
<!--Bawy jesieni-->
|
|
<?php if ( $this->countModules( 'imprezy-barwyjesieni' ) ) : ?>
|
|
<div class="imprezy-tekstpodmenu1">
|
|
<jdoc:include type="modules" name="imprezy-barwyjesieni" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'imprezy-barwyjesienigaleria' ) ) : ?>
|
|
<div class="imprezy-barwyjesienigaleria">
|
|
<jdoc:include type="modules" name="imprezy-barwyjesienigaleria" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if ( $this->countModules( 'imprezy-zawartoscbarwyjesieni' ) ) : ?>
|
|
<div class="imprezy-zawartoscbarwyjesieni">
|
|
<jdoc:include type="modules" name="imprezy-zawartoscbarwyjesieni" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--Bawy jesieni-->
|
|
|
|
<?php if ( $this->countModules( 'imprezy-tekstpodmenu' ) ) : ?>
|
|
<div class="imprezy-tekstpodmenu">
|
|
<jdoc:include type="modules" name="imprezy-tekstpodmenu" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'imprezy-zawartosc' ) ) : ?>
|
|
<div class="imprezy-zawartosc">
|
|
<jdoc:include type="modules" name="imprezy-zawartosc" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<!--Imprezy edukacyjno-Przyrodnicze-->
|
|
|
|
<!--pokaz slajdów-->
|
|
<?php if ( $this->countModules( 'imprezy-pokazslajdow' ) ) : ?>
|
|
<div class="imprezy-pokazslajdow">
|
|
<jdoc:include type="modules" name="imprezy-pokazslajdow" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--pokaz slajdów-->
|
|
|
|
|
|
|
|
<!--Arboretum kontakt-->
|
|
<?php if ( $this->countModules( 'arboretum-kontakt-up' ) ) : ?>
|
|
<div class="okruszki okrd okrd1">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
<div class="arboretum-kontakt-up">
|
|
|
|
<div class="arboretum-kontakt-up1">
|
|
<jdoc:include type="modules" name="arboretum-kontakt-up" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'arboretum-kontakt' ) ) : ?>
|
|
<div class="kontakt-background">
|
|
<div class="arboretum-kontakt">
|
|
<jdoc:include type="modules" name="arboretum-kontakt" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $this->countModules( 'arboretum-kontakt-down' ) ) : ?>
|
|
<div class="arboretum-kontakt-down">
|
|
<div class="arboretum-kontakt-down1">
|
|
<jdoc:include type="modules" name="arboretum-kontakt-down" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--Arboretum kontakt-->
|
|
|
|
|
|
|
|
|
|
<!--Artykuły imprezy i edukaacja-->
|
|
<?php if ( $this->countModules( 'art-arbo' ) ) : ?>
|
|
<main class="docxz">
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
<?php endif; ?>
|
|
<!--Artykuły imprezy i edukaacja-->
|
|
|
|
|
|
|
|
|
|
|
|
<!--O instytucie artykuły-->
|
|
<?php if ( $this->countModules( 'oinstytucie-article' ) ) : ?>
|
|
|
|
<div class="grid-instytut">
|
|
|
|
<div class="liness3 lineleft dendros ">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
<div class="grid-child container-component grik">
|
|
<div class="okruszki">
|
|
<jdoc:include type="modules" name="okruszki-artykul" style="none" />
|
|
</div>
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
|
|
</div>
|
|
<div class="historia-artylul">
|
|
|
|
<?php if ( $this->countModules( 'powrot' ) ) : ?>
|
|
<div class="powrot"><a href="#historia-in">↑ POWRÓT</a></div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( $this->countModules( 'historiaar' ) ) : ?>
|
|
<div class="grid-child container-component">
|
|
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
|
|
<!-- O instytucie -> historia-->
|
|
<?php if ( $this->countModules( 'historia' ) ) : ?>
|
|
|
|
<div class="instytut-historia" id="historia-in">
|
|
<div class="okruszki ">
|
|
<jdoc:include type="modules" name="okruszki-artykuly" style="none" />
|
|
</div>
|
|
<div class="spis-ar">SPIS ARTYKUŁÓW</div>
|
|
|
|
<jdoc:include type="modules" name="historia" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<!-- O instytucie -> historia-->
|
|
</div>
|
|
<div class="liness3 lineleft dendros">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--O instytucie artykuły-->
|
|
|
|
|
|
|
|
<!--aboretum imprezy edukacyjne artykuł-->
|
|
<!--pokaz slajdów-->
|
|
<?php if ( $this->countModules( 'imprezy-pokazslajdow1' ) ) : ?>
|
|
<div class="imprezy-pokazslajdow">
|
|
<jdoc:include type="modules" name="imprezy-pokazslajdow1" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--pokaz slajdów-->
|
|
|
|
|
|
<!--Arboretum fotoaktualności-->
|
|
|
|
|
|
<?php if ( $this->countModules( 'arboretum-fotoaktualnosci-filtry' ) ) : ?>
|
|
<div class="arboretum-fotoaktualnosci-filtry">
|
|
<div class="arboretum-fotoaktualnosci1">
|
|
<div class="arbo-rok"><span class="rok-sp">ROK</span>
|
|
<select>
|
|
<option value="" placeholder="wybierz">ALL </option>
|
|
<option value="2013">2013</option>
|
|
<option value="2014">2014</option>
|
|
<option value="2015">2015</option>
|
|
<option value="2016">2016</option>
|
|
<option value="2017">2017</option>
|
|
<option value="2020">2018</option>
|
|
<option value="2020">2019</option>
|
|
<option value="2020">2020</option>
|
|
<option value="2020">2021</option>
|
|
<option value="2020">2022</option>
|
|
<option value="2020">2023</option>
|
|
<option value="2020">2024</option>
|
|
<option value="2020">2025</option>
|
|
<option value="2020">2026</option>
|
|
<option value="2020">2027</option>
|
|
<option value="2020">2028</option>
|
|
<option value="2020">2029</option>
|
|
<option value="2020">2030</option>
|
|
<option value="2020">2031</option>
|
|
<option value="2020">2032</option>
|
|
<option value="2020">2033</option>
|
|
<option value="2020">2034</option>
|
|
<option value="2022">2035</option>
|
|
<option value="2022">2036</option>
|
|
<option value="2022">2037</option>
|
|
<option value="2022">2038</option>
|
|
<option value="2022">2039</option>
|
|
<option value="2022">2040</option>
|
|
<option value="2022">2041</option>
|
|
<option value="2022">2042</option>
|
|
<option value="2022">2043</option>
|
|
<option value="2022">2044</option>
|
|
<option value="2022">2045</option>
|
|
<option value="2022">2046</option>
|
|
</select>
|
|
|
|
|
|
</div>
|
|
<div class="arbo-miesiac"><span class="miesiac-sp">
|
|
<?php
|
|
// Pobierz obecny URL
|
|
$current_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
|
|
|
// Sprawdź, czy URL zawiera 'en-us'
|
|
if ( strpos( $current_url, 'en-us' ) !== false ) {
|
|
// Kod do wykonania, jeśli URL zawiera 'en-us'
|
|
echo "MONTH";
|
|
} else {
|
|
// Kod do wykonania, jeśli URL nie zawiera 'en-us'
|
|
echo "MIESIĄC";
|
|
}
|
|
?>
|
|
</span>
|
|
<?php
|
|
// Pobierz obecny URL
|
|
$current_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
|
|
|
// Sprawdź, czy URL zawiera 'en-us'
|
|
if ( strpos( $current_url, 'en-us' ) !== false ) {
|
|
echo <<<EOT
|
|
<select>
|
|
<option value="" placeholder="wybierz">ALL</option>
|
|
<option value="01">JANUARY</option>
|
|
<option value="02">FEBRUARY</option>
|
|
<option value="03">MARCH</option>
|
|
<option value="04">APRIL</option>
|
|
<option value="05">MAY</option>
|
|
<option value="06">JUNE</option>
|
|
<option value="07">JULY</option>
|
|
<option value="08">AUGUST</option>
|
|
<option value="09">SEPTEMBER</option>
|
|
<option value="10">OCTOBER</option>
|
|
<option value="11">NOVEMBER</option>
|
|
<option value="12">DECEMBER</option>
|
|
</select>
|
|
EOT;
|
|
} else {
|
|
// Kod do wykonania, jeśli URL nie zawiera 'en-us'
|
|
echo <<<EOT
|
|
<select>
|
|
<option value="" placeholder="wybierz">ALL</option>
|
|
<option value="Styczeń">STYCZEŃ</option>
|
|
<option value="Luty">LUTY</option>
|
|
<option value="Marzec">MARZEC</option>
|
|
<option value="Kwiecień">KWIECIEŃ</option>
|
|
<option value="Maj">MAJ</option>
|
|
<option value="Czerwiec">CZERWIEC</option>
|
|
<option value="Lipiec">LIPIEC</option>
|
|
<option value="Sierpień">SIERPIEŃ</option>
|
|
<option value="Wrzesień">WRZESIEŃ</option>
|
|
<option value="Październik">PAŹDZIERNIK</option>
|
|
<option value="Listopad">LISTOPAD</option>
|
|
<option value="Grudzień">GRUDZIEŃ</option>
|
|
</select>
|
|
EOT;
|
|
}
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
<div class="arbo-szukaj">
|
|
<?php
|
|
// Pobierz obecny URL
|
|
$current_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
|
|
|
// Sprawdź, czy URL zawiera 'en-us'
|
|
if ( strpos( $current_url, 'en-us' ) !== false ) {
|
|
echo 'Search';
|
|
} else {
|
|
|
|
echo 'Szukaj';
|
|
}
|
|
?>
|
|
</div>
|
|
<jdoc:include type="modules" name="arboretum-fotoaktualnosci-filtry" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'fotoaktualnosci-start' ) ) : ?>
|
|
|
|
<jdoc:include type="modules" name="fotoaktualnosci-start" style="none" />
|
|
|
|
<?php endif; ?>
|
|
<?php if ( $this->countModules( 'arboretumfotoaktualnosci' ) ) : ?>
|
|
<div class="grid-arboretumfotoaktualnosci">
|
|
<div class="liness3 lineleft dendros">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
<div class="grid-child container-component">
|
|
<div class="fotexs"></div>
|
|
<main>
|
|
<jdoc:include type="component" />
|
|
</main>
|
|
</div>
|
|
<div class="liness3 lineleft dendros">
|
|
<jdoc:include type="modules" name="liness3" style="none" />
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--O instytucie artykuły-->
|
|
|
|
|
|
|
|
<!--STOPKA-->
|
|
<?php if ( $this->countModules( 'footer-gl' ) ) : ?>
|
|
<div class="footer-gl">
|
|
<div class="footer-line">
|
|
<jdoc:include type="modules" name="footer-gl" style="none" />
|
|
</div>
|
|
<footer>
|
|
<div class="footerup">
|
|
<div class="posts-9">
|
|
<?php if ( $this->countModules( 'footer' ) ) : ?>
|
|
<div class="footer">
|
|
|
|
<jdoc:include type="modules" name="footer" style="none" />
|
|
<jdoc:include type="modules" name="footer1" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="posts-10">
|
|
<?php if ( $this->countModules( 'mapa' ) ) : ?>
|
|
<div class="mapa">
|
|
<jdoc:include type="modules" name="mapa" style="none" />
|
|
</div>
|
|
<div class="menupodmapa">
|
|
<jdoc:include type="modules" name="menupodmapa" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<div class="footer-logo">
|
|
<div class="posts-11">
|
|
<?php if ( $this->countModules( 'instytut-logo' ) ) : ?>
|
|
<div class="instytut-logo">
|
|
<jdoc:include type="modules" name="instytut-logo" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="posts-12">
|
|
<?php if ( $this->countModules( 'logo-obok' ) ) : ?>
|
|
<div class="logo-obok">
|
|
<jdoc:include type="modules" name="logo-obok" style="none" />
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
<?php endif; ?>
|
|
<!--STOPKA-->
|
|
<jdoc:include type="modules" name="debug" style="none" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
var galleryThumbs = new Swiper('.gallery-thumbs', {
|
|
spaceBetween: 10,
|
|
slidesPerView: 4,
|
|
freeMode: true,
|
|
watchSlidesVisibility: true,
|
|
watchSlidesProgress: true,
|
|
});
|
|
var galleryTop = new Swiper('.gallery-top', {
|
|
spaceBetween: 10,
|
|
navigation: {
|
|
nextEl: '.swiper-button-next',
|
|
prevEl: '.swiper-button-prev',
|
|
},
|
|
thumbs: {
|
|
swiper: galleryThumbs
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
|
|
<script>
|
|
var swiper = new Swiper(".mySwiper", {
|
|
slidesPerView: 5,
|
|
spaceBetween: 10,
|
|
slidesPerGroup: 1,
|
|
loop: true,
|
|
loopFillGroupWithBlank: true,
|
|
pagination: {
|
|
el: ".swiper-pagination",
|
|
clickable: true,
|
|
},
|
|
navigation: {
|
|
nextEl: ".swiper-button-next",
|
|
prevEl: ".swiper-button-prev",
|
|
},
|
|
});
|
|
</script>
|
|
|
|
</html>
|