mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-12-01 23:57:18 +01:00
24 lines
684 B
PHP
24 lines
684 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', 'qn-dialogs');
|
|
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>
|