Upgrade to 3.0.1

This commit is contained in:
Bastian Allgeier
2019-02-05 11:26:42 +01:00
parent 1dc0eeb768
commit f76ee1bb14
39 changed files with 4217 additions and 65 deletions

View File

@@ -5,7 +5,7 @@
</p>
<p class="admin-advice">
Advice for developers and administrators:<br>
Enable <a href="https://getkirby.com/docs/reference/options/debug">debug mode</a> to get further information about the error.
Enable <a href="https://getkirby.com/docs/reference/system/options/debug">debug mode</a> to get further information about the error.
</p>
<?php include __DIR__ . '/snippets/footer.php' ?>

View File

@@ -23,15 +23,19 @@
<?= $icons ?>
<div id="app"></div>
<noscript>
Please enable JavaScript in your browser
</noscript>
<script>window.panel = <?= json_encode($options, JSON_UNESCAPED_SLASHES) ?></script>
<script src="<?= $assetUrl ?>/js/plugins.js"></script>
<script src="<?= $assetUrl ?>/js/vendor.js"></script>
<script src="<?= $pluginJs ?>"></script>
<script src="<?= $assetUrl ?>/js/plugins.js" defer></script>
<script src="<?= $assetUrl ?>/js/vendor.js" defer></script>
<script src="<?= $pluginJs ?>" defer></script>
<?php if (isset($config['js'])) : ?>
<script src="<?= Url::to($config['js']) ?>"></script>
<script src="<?= Url::to($config['js']) ?>" defer></script>
<?php endif ?>
<script src="<?= $assetUrl ?>/js/app.js"></script>
<script src="<?= $assetUrl ?>/js/app.js" defer></script>
</body>
</html>