mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-12-01 15:47:17 +01:00
In Nextcloud 15 the default Content Security Policy disallows unsafe eval expressions, so Handlebars templates can no longer be compiled at runtime. Fix issue #18
23 lines
648 B
PHP
23 lines
648 B
PHP
<?php
|
|
vendor_script('quicknotes', 'handlebars');
|
|
script('quicknotes', 'templates');
|
|
vendor_script('quicknotes', 'isotope.pkgd');
|
|
vendor_script('quicknotes', 'medium-editor');
|
|
vendor_style('quicknotes', 'medium-editor');
|
|
vendor_style('quicknotes', 'beagle');
|
|
vendor_script('quicknotes', 'autolist');
|
|
script('quicknotes', 'script');
|
|
style('quicknotes', 'style');
|
|
?>
|
|
|
|
<div id="app-navigation">
|
|
<?php print_unescaped($this->inc('part.navigation')); ?>
|
|
<?php print_unescaped($this->inc('part.settings')); ?>
|
|
</div>
|
|
|
|
<div id="app-content">
|
|
<div id="app-content-wrapper">
|
|
<?php print_unescaped($this->inc('part.content')); ?>
|
|
</div>
|
|
</div>
|