19 lines
393 B
PHP
19 lines
393 B
PHP
|
<?php
|
||
|
script('externalpassword', 'script');
|
||
|
style('externalpassword', '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>
|
||
|
|