mirror of
https://github.com/nextcloud/passman.git
synced 2025-01-06 07:22:03 +08:00
17 lines
371 B
PHP
17 lines
371 B
PHP
<?php
|
|
script('passman', 'script');
|
|
style('passman', '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>
|