31 lines
1.2 KiB
PHTML
31 lines
1.2 KiB
PHTML
<?php
|
|
// Copyright 1999-2025. WebPros International GmbH. All rights reserved.
|
|
?>
|
|
<?= $this->doctype() ?>
|
|
<html <?= $this->htmlDoc() ?>>
|
|
<head>
|
|
<?= $this->headMeta() ?>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<meta name="forgery_protection_token" id="forgery_protection_token" content="<?= Session::get()->panel()->forgeryProtectionToken ?>">
|
|
<?= $this->headTitle() ?>
|
|
<?= $this->favicon() ?>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
<?= $GLOBALS['skin']->getThemeCssIncludes() ?>
|
|
<?= $this->headStyle() ?>
|
|
<?= $this->headLink() ?>
|
|
<?php $this->jsLoad()->requireJs(); ?>
|
|
<?php $this->jsLoad()->prepend('/javascript/main.js'); ?>
|
|
<?php $this->jsLoad()->prepend('/javascript/vendors.js'); ?>
|
|
<?php $this->jsLoad()->uiLibrary(); ?>
|
|
<?php $this->jsLoad()->prepend('/javascript/externals/prototype.js'); ?>
|
|
<?= new \Plesk\UserActivityTracking\View($this) ?>
|
|
<?= $this->headScript() ?>
|
|
<?= $this->partial('partials/context_header.phtml') ?>
|
|
</head>
|
|
<body>
|
|
<?=$this->plesk()->run()?>
|
|
</body>
|
|
</html>
|