parent
7bb1fc6406
commit
069b84796f
@ -1,11 +1,13 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html data-cast-api-enabled="true" lang="en">
|
<html data-cast-api-enabled="true" lang="en">
|
||||||
<?php echo \View::forge('layout/header'); ?>
|
<?php echo \View::forge('layout/header', [
|
||||||
|
'title' => isset($title) ? 'PlexShare :: ' . $title : 'PlexShare by Chewbaka'
|
||||||
|
]); ?>
|
||||||
<?php echo \View::forge('layout/body', [
|
<?php echo \View::forge('layout/body', [
|
||||||
'body' => isset($body) ? $body : null,
|
'body' => isset($body) ? $body : null,
|
||||||
'user' => isset($user) ? $user : null,
|
'user' => isset($user) ? $user : null,
|
||||||
'MenuLibraries' => isset($MenuLibraries) ? $MenuLibraries : null,
|
'MenuLibraries' => isset($MenuLibraries) ? $MenuLibraries : null,
|
||||||
'MenuServer' => isset($MenuServer) ? $MenuServer : null,
|
'MenuServer' => isset($MenuServer) ? $MenuServer : null,
|
||||||
'js_bottom' => isset($js_bottom) ? $js_bottom : null,
|
'js_bottom' => isset($js_bottom) ? $js_bottom : null,
|
||||||
]); ?>
|
]); ?>
|
||||||
</html>
|
</html>
|
Loading…
Reference in new issue