twigs-nextcloud/templates/index.php
William Brawner ba6e26c191 Initial commit
The skeleton project was generated from
https://apps.nextcloud.com/developer/apps/generate

The only additions so far have been to the lib/Db directory, where the
classes, schema and CRUD operations were added for Budget, Category,
Transaction, and UserPermission entities.
2020-03-07 12:36:23 -06:00

18 lines
371 B
PHP

<?php
script('twigs', 'script');
style('twigs', 'style');
?>
<div id="app">
<div id="app-navigation">
<?php print_unescaped($this->inc('navigation/index')); ?>
<?php print_unescaped($this->inc('settings/index')); ?>
</div>
<div id="app-content">
<div id="app-content-wrapper">
<?php print_unescaped($this->inc('content/index')); ?>
</div>
</div>
</div>