Upgrade to 3.3.0

This commit is contained in:
Bastian Allgeier
2019-11-05 09:35:58 +01:00
parent 447a9dd266
commit a431716732
186 changed files with 3068 additions and 1458 deletions

View File

@@ -7,20 +7,20 @@
<title>Kirby Panel</title>
<link rel="stylesheet" href="<?= $assetUrl ?>/css/app.css">
<link rel="stylesheet" href="<?= $pluginCss ?>">
<link nonce="<?= $nonce ?>" rel="stylesheet" href="<?= $assetUrl ?>/css/app.css">
<link nonce="<?= $nonce ?>" rel="stylesheet" href="<?= $pluginCss ?>">
<?php if ($customCss) : ?>
<link rel="stylesheet" href="<?= $customCss ?>">
<link nonce="<?= $nonce ?>" rel="stylesheet" href="<?= $customCss ?>">
<?php endif ?>
<link rel="apple-touch-icon" href="<?= $assetUrl ?>/apple-touch-icon.png" />
<link rel="shortcut icon" href="<?= $assetUrl ?>/favicon.png">
<link nonce="<?= $nonce ?>" rel="apple-touch-icon" href="<?= $assetUrl ?>/apple-touch-icon.png" />
<link nonce="<?= $nonce ?>" rel="shortcut icon" href="<?= $assetUrl ?>/favicon.png">
<base href="<?= $panelUrl ?>">
</head>
<body>
<svg aria-hidden="true" class="k-icons" xmlns="http://www.w3.org/2000/svg" overflow="hidden">
<svg aria-hidden="true" class="k-icons" xmlns="http://www.w3.org/2000/svg" overflow="hidden" nonce="<?= $nonce ?>">
<defs />
</svg>
@@ -32,15 +32,14 @@
<?= $icons ?>
<script>window.panel = <?= json_encode($options, JSON_UNESCAPED_SLASHES) ?></script>
<script src="<?= $assetUrl ?>/js/plugins.js" defer></script>
<script src="<?= $assetUrl ?>/js/vendor.js" defer></script>
<script src="<?= $pluginJs ?>" defer></script>
<script nonce="<?= $nonce ?>">window.panel = <?= json_encode($options, JSON_UNESCAPED_SLASHES) ?></script>
<script nonce="<?= $nonce ?>" src="<?= $assetUrl ?>/js/plugins.js" defer></script>
<script nonce="<?= $nonce ?>" src="<?= $assetUrl ?>/js/vendor.js" defer></script>
<script nonce="<?= $nonce ?>" src="<?= $pluginJs ?>" defer></script>
<?php if (isset($config['js'])) : ?>
<script src="<?= Url::to($config['js']) ?>" defer></script>
<script nonce="<?= $nonce ?>" src="<?= Url::to($config['js']) ?>" defer></script>
<?php endif ?>
<script src="<?= $assetUrl ?>/js/app.js" defer></script>
<script nonce="<?= $nonce ?>" src="<?= $assetUrl ?>/js/app.js" defer></script>
</body>
</html>