William Brawner
ba6e26c191
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.
18 lines
371 B
PHP
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>
|
|
|