You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
622 B
14 lines
622 B
<!DOCTYPE html>
|
|
<html data-cast-api-enabled="true" lang="en">
|
|
<?php echo \View::forge('layout/header', [
|
|
'title' => isset($title) ? 'PlexShare :: ' . $title : 'PlexShare by Chewbaka'
|
|
]); ?>
|
|
<?php echo \View::forge('layout/body', [
|
|
'servers' => isset($servers) ? $servers : null,
|
|
'body' => isset($body) ? $body : null,
|
|
'user' => isset($user) ? $user : null,
|
|
'MenuLibraries' => isset($MenuLibraries) ? $MenuLibraries : null,
|
|
'MenuServer' => isset($MenuServer) ? $MenuServer : null,
|
|
'js_bottom' => isset($js_bottom) ? $js_bottom : null,
|
|
]); ?>
|
|
</html>
|