File indexing completed on 2025-05-04 05:29:15
0001 <?php 0002 /** 0003 * ocs-webserver 0004 * 0005 * Copyright 2016 by pling GmbH. 0006 * 0007 * This file is part of ocs-webserver. 0008 * 0009 * This program is free software: you can redistribute it and/or modify 0010 * it under the terms of the GNU Affero General Public License as 0011 * published by the Free Software Foundation, either version 3 of the 0012 * License, or (at your option) any later version. 0013 * 0014 * This program is distributed in the hope that it will be useful, 0015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0017 * GNU Affero General Public License for more details. 0018 * 0019 * You should have received a copy of the GNU Affero General Public License 0020 * along with this program. If not, see <http://www.gnu.org/licenses/>. 0021 **/ 0022 ?><!doctype html> 0023 <html lang="en"> 0024 <head> 0025 <meta charset="utf-8"> 0026 <?php echo $this->render('partials/htmlheader.phtml'); ?> 0027 0028 <link rel="SHORTCUT ICON" href="<?=$this->template['favicon']?>"/> 0029 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 0030 0031 <link rel="stylesheet" type="text/css" href="/theme/flatui/js/lib/tooltipster/dist/css/tooltipster.bundle.min.css" /> 0032 <link rel="stylesheet" type="text/css" href="/theme/flatui/js/lib/tooltipster/dist/css/plugins/tooltipster/sideTip/themes/tooltipster-sideTip-light.min.css" /> 0033 <link rel="stylesheet" type="text/css" href="/theme/flatui/css/tooltipster-light-customized.css" /> 0034 <!-- Loading Bootstrap --> 0035 <link rel="stylesheet" href="/theme/flatui/css/bootstrap/bootstrap.min.css" type="text/css" crossorigin="anonymous"> 0036 <link rel="stylesheet" href="/tools/fancybox2.1.4/jquery.fancybox.css?v=2.1.4" type="text/css" media="screen" /> 0037 <link rel="stylesheet" type="text/css" href="/theme/flatui/js/lib/tooltipster/dist/css/tooltipster.bundle.min.css" /> 0038 <link rel="stylesheet" type="text/css" href="/theme/flatui/js/lib/tooltipster/dist/css/plugins/tooltipster/sideTip/themes/tooltipster-sideTip-light.min.css" /> 0039 <link rel="stylesheet" type="text/css" href="/theme/flatui/css/tooltipster-light-customized.css" /> 0040 <!-- custom styles --> 0041 <link href="/theme/flatui/css/style.css" rel="stylesheet"> 0042 <link href="/theme/flatui/css/stylesheet.css?<?= APPLICATION_VERSION ?>" rel="stylesheet"> 0043 <link href="/theme/flatui/css/explore_index.css" rel="stylesheet"> 0044 <link href="/theme/flatui/css/startpage.css" rel="stylesheet"> 0045 0046 0047 0048 <link rel="alternate" type="application/rss+xml" title="Latest Products" href="/content.rdf"/> 0049 <link href="/theme/flatui/css/explore_index.css" rel="stylesheet"> 0050 <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> 0051 <link href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,500" rel="stylesheet"> 0052 0053 <script src="/theme/flatui/js/lib/jquery-3.2.1.min.js" ></script> 0054 <script src="/theme/flatui/js/lib/bootstrap.min.js" ></script> 0055 <script type="text/javascript" src="/theme/flatui/js/lib/tooltipster/dist/js/tooltipster.bundle.min.js"></script> 0056 <script src="/theme/flatui/js/lib/moment.min.js"></script> 0057 <script type="text/javascript" src="/tools/fancybox2.1.4/jquery.fancybox.pack.js?v=2.1.4"></script> 0058 0059 <script src="/theme/flatui/js/script.min.js?<?= APPLICATION_VERSION ?>"></script> 0060 0061 </head> 0062 <body id="od-body"> 0063 <?php echo $this->render('partials/header/template_react.phtml'); ?> 0064 0065 <?php echo $this->render('partials/flashMessage.phtml'); ?> 0066 0067 <?php echo $this->layout()->content; ?> 0068 0069 <?php echo $this->render('partials/footer/template.phtml'); ?> 0070 0071 <div id="modal-dialog" class="modal hide fade" tabindex="-1" role="dialog"> 0072 <div class="modal-body"></div> 0073 <div id="error"></div> 0074 </div> 0075 0076 0077 0078 <?php 0079 echo $this->render('partials/propagateLogin.phtml'); 0080 echo $this->render('partials/propagateLogout.phtml'); 0081 ?> 0082 0083 <?=$this->inlineScript() ?> 0084 0085 0086 0087 <div> 0088 0089 Inhalt 0090 0091 </div> 0092 0093 0094 0095 <!-- Piwik --> 0096 <?php 0097 $piwikid ='1'; 0098 if($domainconfig) 0099 { 0100 $piwikid = $domainconfig->piwik_id; 0101 } 0102 ?> 0103 <script type="text/javascript"> 0104 var _paq = _paq || []; 0105 /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ 0106 _paq.push(['trackPageView']); 0107 _paq.push(['enableLinkTracking']); 0108 (function() { 0109 var u="//piwik.opendesktop.org/"; 0110 _paq.push(['setTrackerUrl', u+'piwik.php']); 0111 _paq.push(['setSiteId', '<?= $piwikid ?>']); 0112 var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; 0113 g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s); 0114 })(); 0115 </script> 0116 <!-- End Piwik Code --> 0117 0118 <?php 0119 echo $this->render('partials/profiler.phtml') 0120 ?> 0121 </body> 0122 </html>