mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-12-01 07:37:18 +01:00
20 lines
465 B
PHP
20 lines
465 B
PHP
<?php
|
|
vendor_script('quicknotes', 'handlebars');
|
|
vendor_script('quicknotes', 'isotope.pkgd');
|
|
script('quicknotes', 'script');
|
|
style('quicknotes', 'style');
|
|
?>
|
|
|
|
<div id="app">
|
|
<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>
|
|
</div>
|