mirror of
https://github.com/nextcloud/passman.git
synced 2025-01-07 15:57:47 +08:00
18 lines
371 B
PHP
18 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>
|