diff --git a/Blacklight/http/AdminPage.php b/Blacklight/http/AdminPage.php index 305fb8b45..81bbc8ef6 100644 --- a/Blacklight/http/AdminPage.php +++ b/Blacklight/http/AdminPage.php @@ -22,9 +22,9 @@ class AdminPage extends BasePage // Tell Smarty which directories to use for templates $this->smarty->setTemplateDir( [ - 'admin' => NN_THEMES.'admin', - 'shared' => NN_THEMES.'shared', - 'default' => NN_THEMES.'Gentele', + 'admin' => config('ytake-laravel-smarty.template_path').'/admin', + 'shared' => config('ytake-laravel-smarty.template_path').'/shared', + 'default' => config('ytake-laravel-smarty.template_path').'/admin', ] ); diff --git a/Blacklight/http/Page.php b/Blacklight/http/Page.php index 0243f1c2a..0b3ff02e5 100644 --- a/Blacklight/http/Page.php +++ b/Blacklight/http/Page.php @@ -26,9 +26,9 @@ class Page extends BasePage // Tell Smarty which directories to use for templates $this->smarty->setTemplateDir( [ - 'user' => NN_THEMES.$this->theme, - 'shared' => NN_THEMES.'shared', - 'default' => NN_THEMES.'Gentele', + 'user' => config('ytake-laravel-smarty.template_path'). DIRECTORY_SEPARATOR . $this->theme, + 'shared' => config('ytake-laravel-smarty.template_path').'/shared', + 'default' => config('ytake-laravel-smarty.template_path').'/Gentele', ] ); diff --git a/Changelog b/Changelog index a2e7a35bb..1cbde18d9 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-03-06 DariusIII + * Chg: Move themes to resources/views/themes folder * Chg: Update Captcha class * Chg: Update admin area pages * Chg: Move BasePage, AdminPage and Page to Blacklight\http diff --git a/app/Console/Commands/UpdateNNTmux.php b/app/Console/Commands/UpdateNNTmux.php index 5a17cfdcf..c1aefc03b 100644 --- a/app/Console/Commands/UpdateNNTmux.php +++ b/app/Console/Commands/UpdateNNTmux.php @@ -3,6 +3,7 @@ namespace App\Console\Commands; use Illuminate\Console\Command; +use Ytake\LaravelSmarty\Smarty; class UpdateNNTmux extends Command { @@ -66,15 +67,15 @@ class UpdateNNTmux extends Command } } - $smarty = new \Smarty(); - $smarty->setCompileDir(NN_SMARTY_TEMPLATES); + $smarty = new Smarty(); + $smarty->setCompileDir(config('ytake-laravel-smarty.compile_path')); $cleared = $smarty->clearCompiledTemplate(); if ($cleared) { $this->output->writeln('The Smarty compiled template cache has been cleaned for you'); } else { $this->output->writeln( 'You should clear your Smarty compiled template cache at: '. - NN_RES.'smarty'.DS.'templates_c' + config('ytake-laravel-smarty.compile_path'). '' ); } } catch (\Exception $e) { diff --git a/config/ytake-laravel-smarty.php b/config/ytake-laravel-smarty.php index 3ecc028e7..f265d923d 100644 --- a/config/ytake-laravel-smarty.php +++ b/config/ytake-laravel-smarty.php @@ -42,7 +42,7 @@ return [ 'right_delimiter' => '}', // path info - 'template_path' => base_path().'/public/themes', + 'template_path' => base_path().'/resources/views/themes', // smarty cache directory 'cache_path' => storage_path().'/framework/smarty/cache', diff --git a/public/themes/Omicron/articlesmenu.tpl b/public/themes/Omicron/articlesmenu.tpl deleted file mode 100755 index 6863da5df..000000000 --- a/public/themes/Omicron/articlesmenu.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{if $articlecontentlist|@count > 0} -
  • -

    Articles

    - -
  • -{/if} \ No newline at end of file diff --git a/public/themes/Omicron/forgottenpassword.tpl b/public/themes/Omicron/forgottenpassword.tpl deleted file mode 100755 index bd942bd9c..000000000 --- a/public/themes/Omicron/forgottenpassword.tpl +++ /dev/null @@ -1,76 +0,0 @@ - - -{if isset($error) && $error != ''} -
    {$error}
    -{/if} -{if isset($notice) && $notice != ''} -
    {$notice}
    -{/if} -{if isset($sent) && $sent != ''} -
    A link to reset your password has been sent to your e-mail account.
    -{/if} - - - {$site->title} | Password reset - - - - - - - - - - - - - -{if $confirmed == '' && $sent == ''} - -
    - -
    - -
    -
    - - -
    -
    - - -
    -
    -
    - {$page->smarty->fetch('captcha.tpl')} -
    -
    -
    - -
    -
    -
    - - - - - - - -{elseif $sent != ''} -

    - A password reset request has been sent to your email. -

    -{else} -

    - Your password has been reset and sent to you in an email. -

    -{/if} - diff --git a/public/themes/Omicron/multi-operations.tpl b/public/themes/Omicron/multi-operations.tpl deleted file mode 100755 index ed0923d4b..000000000 --- a/public/themes/Omicron/multi-operations.tpl +++ /dev/null @@ -1,11 +0,0 @@ -
    - {$pager} -
    - With Selected: - - - {if isset($sabintegrated) && $sabintegrated !=""} - - {/if} -
    -
    diff --git a/public/themes/Omicron/mymovies-add.tpl b/public/themes/Omicron/mymovies-add.tpl deleted file mode 100644 index 15237f426..000000000 --- a/public/themes/Omicron/mymovies-add.tpl +++ /dev/null @@ -1,22 +0,0 @@ -
    - -

    {$type|ucwords} {$movie.title|escape:"htmlall"} in

    -
    - -
    - -
    - {if $from}{/if} - {html_checkboxes id="category" name='category' values=$cat_ids output=$cat_names selected=$cat_selected separator=''} -
    -
    -
    - -
    - -
    -
    -
    -
    diff --git a/public/themes/Omicron/nzbvortex-ajax.tpl b/public/themes/Omicron/nzbvortex-ajax.tpl deleted file mode 100755 index 677640608..000000000 --- a/public/themes/Omicron/nzbvortex-ajax.tpl +++ /dev/null @@ -1,59 +0,0 @@ -{if $overview['nzbs']|@count gt 0} - {foreach from=$overview['nzbs'] item=nzb} -
    - -
    - {$nzb['uiTitle']} -
    -
    - {if $nzb['isPaused'] == 1} - - {else} - - {/if} -
    -
    -
    -
    -
    - {$nzb['state']}{if $nzb['statusText'] neq ''} ({$nzb['statusText']|lower}){/if}: {$nzb['progress']|round} - % of {math|string_format:"%.2f" equation="size / 1024 / 1024" size=$nzb['totalDownloadSize']} - MB {if $nzb['transferedSpeed'] neq 0}@ {math|string_format:"%.2f" equation="size / 1024 / 1024" size=$nzb['transferedSpeed']} MB/s{/if} -
    -
    - {if $nzb['isPaused'] == 1} - - {else} - - {/if} - -
    -
    - - - - - -
    -
    -
    -
    -
    - {/foreach} -{else} -
    - Nothing in queue, go ahead and add something! -
    -{/if} diff --git a/public/themes/Omicron/recentforumposts.tpl b/public/themes/Omicron/recentforumposts.tpl deleted file mode 100755 index ea766b62e..000000000 --- a/public/themes/Omicron/recentforumposts.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{if $recentforumpostslist|@count > 0} - -{/if} diff --git a/public/themes/Omicron/usefullinksmenu.tpl b/public/themes/Omicron/usefullinksmenu.tpl deleted file mode 100755 index 9111c333f..000000000 --- a/public/themes/Omicron/usefullinksmenu.tpl +++ /dev/null @@ -1,18 +0,0 @@ - diff --git a/public/themes/Omicron/viewanimelist.tpl b/public/themes/Omicron/viewanimelist.tpl deleted file mode 100755 index 7593cbfc8..000000000 --- a/public/themes/Omicron/viewanimelist.tpl +++ /dev/null @@ -1,62 +0,0 @@ -
    -

    Anime > List

    - -
    -{$site->adbrowse} -

    Jump to: -   [ {if $animeletter == '0-9'}{/if}0-9{if $animeletter == '0-9'}{/if} - {foreach $animerange as $range} - {if $range == $animeletter}{/if}{$range}{if $range == $animeletter}{/if} - {/foreach}] -

    -{$site->adbrowse} -{if $animelist|@count > 0} - - {foreach $animelist as $aletter => $anime} - - - - - - - - - - - {foreach $anime as $a} - - - - - - - - {/foreach} - {/foreach} -
    -

    {$aletter}...

    -
    - - - -
    -
    NameTypeCategoriesRatingView
    {$a.title|escape:"htmlall"}{if {$a.startdate} != ''} -
    ({$a.startdate|date_format} - - {/if}{if $a.enddate != ''}{$a.enddate|date_format}{/if})
    {if {$a.type} != ''}{$a.type|escape:"htmlall"}{/if}{if {$a.categories} != ''}{$a.categories|escape:"htmlall"|replace:'|':', '}{/if}{if {$a.rating} != ''}{$a.rating}{/if}AniDB -
    -{else} -
    - - Hmm! No results for this query. -
    -{/if} diff --git a/public/themes/Omicron/viewconsole.tpl b/public/themes/Omicron/viewconsole.tpl deleted file mode 100755 index 313bfe2a5..000000000 --- a/public/themes/Omicron/viewconsole.tpl +++ /dev/null @@ -1,12 +0,0 @@ -
    - {$console.title|ss} -

    {$console.title} {if $console.year != ""}({$console.year}){/if}

    - {if $console.genres != ""}

    Genre: {$console.genres}

    {/if} - {if $console.publisher != ""}

    Publisher: {$console.publisher}

    {/if} - {if $console.releasedate != ""}

    Released: {$console.releasedate|date_format}

    {/if} - {if $console.review != ""} -

    Review:

    -

    {$console.review}

    - {/if} -
    diff --git a/public/themes/Omicron/viewfilelist.tpl b/public/themes/Omicron/viewfilelist.tpl deleted file mode 100755 index dae65bf9c..000000000 --- a/public/themes/Omicron/viewfilelist.tpl +++ /dev/null @@ -1,35 +0,0 @@ -

    {$page->title}

    -

    For - {$rel.searchname|escape:'htmlall'} -

    - - - - - - - - - {foreach $files as $i=>$file name="iteration"} - - - - {assign var="icon" value='themes/shared/images/fileicons/'|cat:$file.ext|cat:".png"} - {if $file.ext == "" || !is_file("$icon")} - {assign var="icon" value='file'} - {else} - {assign var="icon" value=$file.ext} - {/if} - {if $file.partstotal != 0} - {assign var="completion" value=($file.partsactual/$file.partstotal*100)|number_format:1} - {else} - {assign var="completion" value=0|number_format:1} - {/if} - - - - - {/foreach} -
    #filenamecompletionsize
    {$smarty.foreach.iteration.index+1}{$file.title|escape:'htmlall'}{$file.ext}{if $completion < 100}{$completion} - %{else}{$completion}%{/if}{if $file.size < 100000}{$file.size|fsize_format:"KB"}{else}{$file.size|fsize_format:"MB"}{/if}
    diff --git a/public/themes/Omicron/viewmoviefull.tpl b/public/themes/Omicron/viewmoviefull.tpl deleted file mode 100755 index e8b6d1d0e..000000000 --- a/public/themes/Omicron/viewmoviefull.tpl +++ /dev/null @@ -1,206 +0,0 @@ -
    -

    View > Movie

    - -
    -{if $results|@count > 0} -
    - {foreach $results as $result} -
    - {if $result.cover == 1} - {$result.title|escape: - {else} - {$result.title|escape: - {/if} - {$result.title|escape:"htmlall"} ({$result.year}) - IMDB - TRAKT -

    {if $result.genre != ''}{$result.genre|replace:"|":" / "}{/if}

    - {if $result.tagline != ''} -

    "{$result.tagline|escape:"htmlall"}"

    - {/if} -
    - {if $result.plot != ''} -
    Plot
    -
    {$result.plot|escape:"htmlall"}
    - {/if} - {if $result.rating != ''} -
    Rating
    -
    {$result.rating} - /10 {if isset($result.ratingcount) && $result.ratingcount != ''}({$result.ratingcount|number_format} votes)
    {/if} - {/if} - {if $result.director != ''} -
    Director
    -
    {$result.director|replace:"|":", "}
    - {/if} - {if $result.actors != ''} -
    Actors
    -
    {$result.actors|replace:"|":", "}
    - {/if} -
    -
    -
    -
    -
    - {if isset($section) && $section != ''}View: - Covers - | - List -
    - {/if} - With Selected: -
    - - - {if isset($sabintegrated) && $sabintegrated !=""} - - {/if} -
    - {if isset($isadmin)} -
    - Admin: -
    - - -
    -
    - {/if} -
    -
    -
    -
    -
    -
    - - - - - - - - - - {assign var="msplits" value=","|explode:$result.grp_release_id} - {assign var="mguid" value=","|explode:$result.grp_release_guid} - {assign var="mnfo" value=","|explode:$result.grp_release_nfoid} - {assign var="mgrp" value=","|explode:$result.grp_release_grpname} - {assign var="mname" value="#"|explode:$result.grp_release_name} - {assign var="mpostdate" value=","|explode:$result.grp_release_postdate} - {assign var="msize" value=","|explode:$result.grp_release_size} - {assign var="mtotalparts" value=","|explode:$result.grp_release_totalparts} - {assign var="mcomments" value=","|explode:$result.grp_release_comments} - {assign var="mgrabs" value=","|explode:$result.grp_release_grabs} - {assign var="mpass" value=","|explode:$result.grp_release_password} - {assign var="minnerfiles" value=","|explode:$result.grp_rarinnerfilecount} - {assign var="mhaspreview" value=","|explode:$result.grp_haspreview} - {assign var="mcatname" value=","|explode:$result.grp_release_catname} - {foreach $msplits as $m} - - - - - - - - - {/foreach} -
    - - - NameCategoryPosted<SizeAction
    - {$mname[$m@index]|escape:"htmlall"|replace:".":" "} -
    - {$mgrabs[$m@index]} - grab{if $mgrabs[$m@index] != 1}s{/if} - {if isset($mnfo[$m@index]) && $mnfo[$m@index] > 0}NFO - {/if} - {if $mpass[$m@index] == 2} - - {elseif $mpass[$m@index] == 1} - - {/if} -
    {$mcatname[$m@index]} - {$mpostdate[$m@index]|timeago}{$msize[$m@index]|fsize_format:"MB"} - - - {if isset($sabintegrated) && $sabintegrated !=""} - - {/if} -
    -
    - {if $results|@count > 10} -
    -
    -
    - {if isset($section) && $section != ''}View: - Covers - | - List -
    - {/if} - With Selected: -
    - - - {if isset($sabintegrated) && $sabintegrated !=""} - - {/if} - {if isset($isadmin)} - - - {/if} -
    -
    -
    -
    - {$pager} -
    -
    - {/if} -
    -
    - - {/foreach} -
    -{/if} diff --git a/public/themes/Omicron/viewmovietrailer.tpl b/public/themes/Omicron/viewmovietrailer.tpl deleted file mode 100755 index 0f5090d41..000000000 --- a/public/themes/Omicron/viewmovietrailer.tpl +++ /dev/null @@ -1,9 +0,0 @@ -
    - - - - -
    \ No newline at end of file diff --git a/public/themes/Omicron/viewserieslist.tpl b/public/themes/Omicron/viewserieslist.tpl deleted file mode 100755 index 0cb37955c..000000000 --- a/public/themes/Omicron/viewserieslist.tpl +++ /dev/null @@ -1,99 +0,0 @@ - -
    -

    Series > List

    - -
    -

    - Jump to: -  [ {if $seriesletter == '0-9'}{/if}0-9{if $seriesletter == '0-9'}{/if} - {foreach $seriesrange as $range} - {if $range == $seriesletter}{/if}{$range}{if $range == $seriesletter}{/if} - {/foreach}] -

    - -{$site->adbrowse} -{if $serieslist|@count > 0} - -
    -
    - -
    - - -
    - - -
    - {foreach $serieslist as $sletter => $series} - - - - - - - - - - - {foreach $series as $s} - - - - - - - - {/foreach} - {/foreach} -
    -
    -
    -

    {$sletter}

    -
    -
    -
    Name
    Network
    Country
    Option
    View
    {if !empty($s.title)}{$s.title|escape:"htmlall"}{/if}{if $s.prevdate != ''}
    Last: {$s.previnfo|escape:"htmlall"} aired {$s.prevdate|date_format}{/if}
    {$s.publisher|escape:"htmlall"}{$s.countries_id|escape:"htmlall"} - {if $s.userseriesid != null} - Edit -
    - Remove - {else} - Add - {/if} -
    - Series
    - {if $s.id > 0} - {if $s.tvdb > 0} - TVDB - {/if} - {if $s.tvmaze > 0} - TVMaze - {/if} - {if $s.trakt > 0} - Trakt - {/if} - {if $s.tvrage > 0} - TVRage - {/if} - {if $s.tmdb > 0} - TMDB - {/if} - - {/if} - -
    -{else} -
    - - Hmm! No result on that search term. -
    -{/if} diff --git a/public/themes/Omicron/viewxxxfull.tpl b/public/themes/Omicron/viewxxxfull.tpl deleted file mode 100755 index 50fef9dc0..000000000 --- a/public/themes/Omicron/viewxxxfull.tpl +++ /dev/null @@ -1,200 +0,0 @@ -
    -

    View > XXX Movie

    - -
    -{if $results|@count > 0} -
    - {foreach $results as $result} -
    - {if $result.cover == 1} - {$result.title|escape: - {else} - {$result.title|escape: - {/if} - {$result.title|escape:"htmlall"} -

    {if $result.genre != ''}{$result.genre|replace:"|":" / "}{/if}

    - {if $result.tagline != ''} -

    "{$result.tagline|escape:"htmlall"}"

    - {/if} -
    - {if isset($result.plot) && $result.plot != ''} -
    Plot
    -
    {$result.plot|escape:"htmlall"}
    - {/if} - {if isset($result.rating) && $result.rating != ''} -
    Rating
    -
    {$result.rating} - /10 {if isset($result.ratingcount) && $result.ratingcount != ''}({$result.ratingcount|number_format} votes)
    {/if} - {/if} - {if isset($result.director) && $result.director != ''} -
    Director
    -
    {$result.director|replace:"|":", "}
    - {/if} - {if isset($result.actors) && $result.actors != ''} -
    Actors
    -
    {$result.actors|replace:"|":", "}
    - {/if} -
    -
    -
    -
    -
    - {if isset($section) && $section != ''}View: - Covers - | - List -
    - {/if} - With Selected: -
    - - - {if isset($sabintegrated) && $sabintegrated !=""} - - {/if} -
    - {if isset($isadmin)} -
    - Admin: -
    - - -
    -
    - {/if} -
    -
    -
    -
    -
    -
    - - - - - - - - - - {assign var="msplits" value=","|explode:$result.grp_release_id} - {assign var="mguid" value=","|explode:$result.grp_release_guid} - {assign var="mnfo" value=","|explode:$result.grp_release_nfoid} - {assign var="mgrp" value=","|explode:$result.grp_release_grpname} - {assign var="mname" value="#"|explode:$result.grp_release_name} - {assign var="mpostdate" value=","|explode:$result.grp_release_postdate} - {assign var="msize" value=","|explode:$result.grp_release_size} - {assign var="mtotalparts" value=","|explode:$result.grp_release_totalparts} - {assign var="mcomments" value=","|explode:$result.grp_release_comments} - {assign var="mgrabs" value=","|explode:$result.grp_release_grabs} - {assign var="mpass" value=","|explode:$result.grp_release_password} - {assign var="minnerfiles" value=","|explode:$result.grp_rarinnerfilecount} - {assign var="mhaspreview" value=","|explode:$result.grp_haspreview} - {assign var="mcatname" value=","|explode:$result.grp_release_catname} - {foreach $msplits as $m} - - - - - - - - - {/foreach} -
    - - - NameCategoryPostedSizeAction
    - {$mname[$m@index]|escape:"htmlall"|replace:".":" "} -
    - {$mgrabs[$m@index]} - grab{if $mgrabs[$m@index] != 1}s{/if} - {if isset($mnfo[$m@index]) && $mnfo[$m@index] > 0}NFO - {/if} - {if $mpass[$m@index] == 2} - - {elseif $mpass[$m@index] == 1} - - {/if} -
    {$mcatname[$m@index]} - {$mpostdate[$m@index]|timeago}{$msize[$m@index]|fsize_format:"MB"} - - - {if isset($sabintegrated) && $sabintegrated !=""} - - {/if} -
    -
    - {if $results|@count > 10} -
    -
    -
    - {if isset($section) && $section != ''}View: - Covers - | - List -
    - {/if} - With Selected: -
    - - - {if isset($sabintegrated) && $sabintegrated !=""} - - {/if} - {if isset($isadmin)} - - - {/if} -
    -
    -
    -
    - {$pager} -
    -
    - {/if} -
    -
    - - {/foreach} -
    -{/if} diff --git a/resources/smarty/plugins/.gitignore b/resources/smarty/plugins/.gitignore deleted file mode 100755 index d6b7ef32c..000000000 --- a/resources/smarty/plugins/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore diff --git a/public/plugins/block.php.php b/resources/smarty/plugins/block.php.php similarity index 100% rename from public/plugins/block.php.php rename to resources/smarty/plugins/block.php.php diff --git a/public/plugins/function.getcatval.php b/resources/smarty/plugins/function.getcatval.php similarity index 100% rename from public/plugins/function.getcatval.php rename to resources/smarty/plugins/function.getcatval.php diff --git a/public/plugins/function.html_options_multiple.php b/resources/smarty/plugins/function.html_options_multiple.php similarity index 100% rename from public/plugins/function.html_options_multiple.php rename to resources/smarty/plugins/function.html_options_multiple.php diff --git a/public/plugins/load_plugin_dependency.php b/resources/smarty/plugins/load_plugin_dependency.php similarity index 74% rename from public/plugins/load_plugin_dependency.php rename to resources/smarty/plugins/load_plugin_dependency.php index 90fccd89a..9c94a5926 100644 --- a/public/plugins/load_plugin_dependency.php +++ b/resources/smarty/plugins/load_plugin_dependency.php @@ -1,5 +1,7 @@ plugins_dir) && is_dir($smarty->plugins_dir): - $plugins_dir = $smarty->plugins_dir; + case is_string($smarty->getPluginsDir()) && is_dir($smarty->getPluginsDir()): + $plugins_dir = $smarty->getPluginsDir(); require_once $plugins_dir.DIRECTORY_SEPARATOR.$filename; break; - case is_array($smarty->plugins_dir): + case is_array($smarty->getPluginsDir()): $plugins_dir = ''; - foreach ($smarty->plugins_dir as $dir) { + foreach ($smarty->getPluginsDir() as $dir) { if (is_string($dir) && is_dir($dir)) { $file = $dir.DIRECTORY_SEPARATOR.$filename; if (file_exists($file) && is_readable($file)) { diff --git a/public/plugins/modifier.daysago.php b/resources/smarty/plugins/modifier.daysago.php similarity index 100% rename from public/plugins/modifier.daysago.php rename to resources/smarty/plugins/modifier.daysago.php diff --git a/public/plugins/modifier.fsize_format.php b/resources/smarty/plugins/modifier.fsize_format.php similarity index 100% rename from public/plugins/modifier.fsize_format.php rename to resources/smarty/plugins/modifier.fsize_format.php diff --git a/public/plugins/modifier.magicurl.php b/resources/smarty/plugins/modifier.magicurl.php similarity index 100% rename from public/plugins/modifier.magicurl.php rename to resources/smarty/plugins/modifier.magicurl.php diff --git a/public/plugins/modifier.nl2br.php b/resources/smarty/plugins/modifier.nl2br.php similarity index 100% rename from public/plugins/modifier.nl2br.php rename to resources/smarty/plugins/modifier.nl2br.php diff --git a/public/plugins/modifier.parray.php b/resources/smarty/plugins/modifier.parray.php similarity index 100% rename from public/plugins/modifier.parray.php rename to resources/smarty/plugins/modifier.parray.php diff --git a/public/plugins/modifier.phpdate_format.php b/resources/smarty/plugins/modifier.phpdate_format.php similarity index 91% rename from public/plugins/modifier.phpdate_format.php rename to resources/smarty/plugins/modifier.phpdate_format.php index 761912b5d..a4f1f3859 100755 --- a/public/plugins/modifier.phpdate_format.php +++ b/resources/smarty/plugins/modifier.phpdate_format.php @@ -6,6 +6,9 @@ * Does exactly what the normal date_format plugin does - only it uses date() rather than strftime() * It also supports the various php date constants for doing things like rfc822 dates. */ + +use Ytake\LaravelSmarty\Smarty; + /** * Include the {@link shared.make_timestamp.php} plugin. */ @@ -14,12 +17,12 @@ if (! isset($smarty)) { $smarty = new Smarty(); } switch (true) { - case is_string($smarty->plugins_dir) && is_dir($smarty->plugins_dir): - $plugins_dir = $smarty->plugins_dir; + case is_string($smarty->getPluginsDir()) && is_dir($smarty->getPluginsDir()): + $plugins_dir = $smarty->getPluginsDir(); break; - case is_array($smarty->plugins_dir): + case is_array($smarty->getPluginsDir()): $plugins_dir = ''; - foreach ($smarty->plugins_dir as $dir) { + foreach ($smarty->getPluginsDir() as $dir) { if (is_string($dir) && is_dir($dir)) { $plugins_dir = $dir; break; diff --git a/public/plugins/modifier.strtotime.php b/resources/smarty/plugins/modifier.strtotime.php similarity index 100% rename from public/plugins/modifier.strtotime.php rename to resources/smarty/plugins/modifier.strtotime.php diff --git a/public/plugins/modifier.timeago.php b/resources/smarty/plugins/modifier.timeago.php similarity index 100% rename from public/plugins/modifier.timeago.php rename to resources/smarty/plugins/modifier.timeago.php diff --git a/public/plugins/shared.make_timestamp.php b/resources/smarty/plugins/shared.make_timestamp.php similarity index 100% rename from public/plugins/shared.make_timestamp.php rename to resources/smarty/plugins/shared.make_timestamp.php diff --git a/public/themes/Charisma/articlesmenu.tpl b/resources/views/themes/Charisma/articlesmenu.tpl similarity index 100% rename from public/themes/Charisma/articlesmenu.tpl rename to resources/views/themes/Charisma/articlesmenu.tpl diff --git a/public/themes/Charisma/basepage.tpl b/resources/views/themes/Charisma/basepage.tpl similarity index 100% rename from public/themes/Charisma/basepage.tpl rename to resources/views/themes/Charisma/basepage.tpl diff --git a/public/themes/Charisma/books.tpl b/resources/views/themes/Charisma/books.tpl similarity index 100% rename from public/themes/Charisma/books.tpl rename to resources/views/themes/Charisma/books.tpl diff --git a/public/themes/Charisma/browse.tpl b/resources/views/themes/Charisma/browse.tpl similarity index 100% rename from public/themes/Charisma/browse.tpl rename to resources/views/themes/Charisma/browse.tpl diff --git a/public/themes/Charisma/browsegroup.tpl b/resources/views/themes/Charisma/browsegroup.tpl similarity index 100% rename from public/themes/Charisma/browsegroup.tpl rename to resources/views/themes/Charisma/browsegroup.tpl diff --git a/public/themes/Charisma/btc_payment.tpl b/resources/views/themes/Charisma/btc_payment.tpl similarity index 100% rename from public/themes/Charisma/btc_payment.tpl rename to resources/views/themes/Charisma/btc_payment.tpl diff --git a/public/themes/Charisma/cart.tpl b/resources/views/themes/Charisma/cart.tpl similarity index 100% rename from public/themes/Charisma/cart.tpl rename to resources/views/themes/Charisma/cart.tpl diff --git a/public/themes/Charisma/console.tpl b/resources/views/themes/Charisma/console.tpl similarity index 100% rename from public/themes/Charisma/console.tpl rename to resources/views/themes/Charisma/console.tpl diff --git a/public/themes/Charisma/contact.tpl b/resources/views/themes/Charisma/contact.tpl similarity index 100% rename from public/themes/Charisma/contact.tpl rename to resources/views/themes/Charisma/contact.tpl diff --git a/public/themes/Charisma/content.tpl b/resources/views/themes/Charisma/content.tpl similarity index 100% rename from public/themes/Charisma/content.tpl rename to resources/views/themes/Charisma/content.tpl diff --git a/public/themes/Charisma/css/charisma-app.css b/resources/views/themes/Charisma/css/charisma-app.css similarity index 100% rename from public/themes/Charisma/css/charisma-app.css rename to resources/views/themes/Charisma/css/charisma-app.css diff --git a/public/themes/Charisma/css/elfinder.min.css b/resources/views/themes/Charisma/css/elfinder.min.css similarity index 100% rename from public/themes/Charisma/css/elfinder.min.css rename to resources/views/themes/Charisma/css/elfinder.min.css diff --git a/public/themes/Charisma/css/elfinder.theme.css b/resources/views/themes/Charisma/css/elfinder.theme.css similarity index 100% rename from public/themes/Charisma/css/elfinder.theme.css rename to resources/views/themes/Charisma/css/elfinder.theme.css diff --git a/public/themes/Charisma/css/jquery-ui-1.8.21.custom.css b/resources/views/themes/Charisma/css/jquery-ui-1.8.21.custom.css similarity index 100% rename from public/themes/Charisma/css/jquery-ui-1.8.21.custom.css rename to resources/views/themes/Charisma/css/jquery-ui-1.8.21.custom.css diff --git a/public/themes/Charisma/css/jquery.iphone.toggle.css b/resources/views/themes/Charisma/css/jquery.iphone.toggle.css similarity index 100% rename from public/themes/Charisma/css/jquery.iphone.toggle.css rename to resources/views/themes/Charisma/css/jquery.iphone.toggle.css diff --git a/public/themes/Charisma/forgottenpassword.tpl b/resources/views/themes/Charisma/forgottenpassword.tpl similarity index 100% rename from public/themes/Charisma/forgottenpassword.tpl rename to resources/views/themes/Charisma/forgottenpassword.tpl diff --git a/public/themes/Charisma/forum.tpl b/resources/views/themes/Charisma/forum.tpl similarity index 100% rename from public/themes/Charisma/forum.tpl rename to resources/views/themes/Charisma/forum.tpl diff --git a/public/themes/Charisma/forumpost.tpl b/resources/views/themes/Charisma/forumpost.tpl similarity index 100% rename from public/themes/Charisma/forumpost.tpl rename to resources/views/themes/Charisma/forumpost.tpl diff --git a/public/themes/Charisma/games.tpl b/resources/views/themes/Charisma/games.tpl similarity index 100% rename from public/themes/Charisma/games.tpl rename to resources/views/themes/Charisma/games.tpl diff --git a/public/themes/Charisma/headermenu.tpl b/resources/views/themes/Charisma/headermenu.tpl similarity index 100% rename from public/themes/Charisma/headermenu.tpl rename to resources/views/themes/Charisma/headermenu.tpl diff --git a/public/themes/Charisma/js/charisma.js b/resources/views/themes/Charisma/js/charisma.js similarity index 100% rename from public/themes/Charisma/js/charisma.js rename to resources/views/themes/Charisma/js/charisma.js diff --git a/public/themes/Charisma/js/init-chart.js b/resources/views/themes/Charisma/js/init-chart.js similarity index 100% rename from public/themes/Charisma/js/init-chart.js rename to resources/views/themes/Charisma/js/init-chart.js diff --git a/public/themes/Charisma/js/jquery.autogrow-textarea.js b/resources/views/themes/Charisma/js/jquery.autogrow-textarea.js similarity index 100% rename from public/themes/Charisma/js/jquery.autogrow-textarea.js rename to resources/views/themes/Charisma/js/jquery.autogrow-textarea.js diff --git a/public/themes/Charisma/js/jquery.cookie.js b/resources/views/themes/Charisma/js/jquery.cookie.js similarity index 100% rename from public/themes/Charisma/js/jquery.cookie.js rename to resources/views/themes/Charisma/js/jquery.cookie.js diff --git a/public/themes/Charisma/js/jquery.history.js b/resources/views/themes/Charisma/js/jquery.history.js similarity index 100% rename from public/themes/Charisma/js/jquery.history.js rename to resources/views/themes/Charisma/js/jquery.history.js diff --git a/public/themes/Charisma/js/jquery.iphone.toggle.js b/resources/views/themes/Charisma/js/jquery.iphone.toggle.js similarity index 100% rename from public/themes/Charisma/js/jquery.iphone.toggle.js rename to resources/views/themes/Charisma/js/jquery.iphone.toggle.js diff --git a/public/themes/Charisma/login.tpl b/resources/views/themes/Charisma/login.tpl similarity index 100% rename from public/themes/Charisma/login.tpl rename to resources/views/themes/Charisma/login.tpl diff --git a/public/themes/Charisma/mainmenu.tpl b/resources/views/themes/Charisma/mainmenu.tpl similarity index 100% rename from public/themes/Charisma/mainmenu.tpl rename to resources/views/themes/Charisma/mainmenu.tpl diff --git a/public/themes/Charisma/movies.tpl b/resources/views/themes/Charisma/movies.tpl similarity index 100% rename from public/themes/Charisma/movies.tpl rename to resources/views/themes/Charisma/movies.tpl diff --git a/public/themes/Charisma/multi-operations.tpl b/resources/views/themes/Charisma/multi-operations.tpl similarity index 100% rename from public/themes/Charisma/multi-operations.tpl rename to resources/views/themes/Charisma/multi-operations.tpl diff --git a/public/themes/Charisma/music.tpl b/resources/views/themes/Charisma/music.tpl similarity index 100% rename from public/themes/Charisma/music.tpl rename to resources/views/themes/Charisma/music.tpl diff --git a/public/themes/Charisma/mymovies-add.tpl b/resources/views/themes/Charisma/mymovies-add.tpl similarity index 100% rename from public/themes/Charisma/mymovies-add.tpl rename to resources/views/themes/Charisma/mymovies-add.tpl diff --git a/public/themes/Charisma/mymovies.tpl b/resources/views/themes/Charisma/mymovies.tpl similarity index 100% rename from public/themes/Charisma/mymovies.tpl rename to resources/views/themes/Charisma/mymovies.tpl diff --git a/public/themes/Charisma/myshows-add.tpl b/resources/views/themes/Charisma/myshows-add.tpl similarity index 100% rename from public/themes/Charisma/myshows-add.tpl rename to resources/views/themes/Charisma/myshows-add.tpl diff --git a/public/themes/Charisma/myshows.tpl b/resources/views/themes/Charisma/myshows.tpl similarity index 100% rename from public/themes/Charisma/myshows.tpl rename to resources/views/themes/Charisma/myshows.tpl diff --git a/public/themes/Charisma/nzbvortex-ajax.tpl b/resources/views/themes/Charisma/nzbvortex-ajax.tpl similarity index 100% rename from public/themes/Charisma/nzbvortex-ajax.tpl rename to resources/views/themes/Charisma/nzbvortex-ajax.tpl diff --git a/public/themes/Charisma/nzbvortex.tpl b/resources/views/themes/Charisma/nzbvortex.tpl similarity index 100% rename from public/themes/Charisma/nzbvortex.tpl rename to resources/views/themes/Charisma/nzbvortex.tpl diff --git a/public/themes/Charisma/opensearch.tpl b/resources/views/themes/Charisma/opensearch.tpl similarity index 100% rename from public/themes/Charisma/opensearch.tpl rename to resources/views/themes/Charisma/opensearch.tpl diff --git a/public/themes/Charisma/post_edit.tpl b/resources/views/themes/Charisma/post_edit.tpl similarity index 100% rename from public/themes/Charisma/post_edit.tpl rename to resources/views/themes/Charisma/post_edit.tpl diff --git a/public/themes/Charisma/profile.tpl b/resources/views/themes/Charisma/profile.tpl similarity index 100% rename from public/themes/Charisma/profile.tpl rename to resources/views/themes/Charisma/profile.tpl diff --git a/public/themes/Charisma/profileedit.tpl b/resources/views/themes/Charisma/profileedit.tpl similarity index 100% rename from public/themes/Charisma/profileedit.tpl rename to resources/views/themes/Charisma/profileedit.tpl diff --git a/public/themes/Charisma/recentforumposts.tpl b/resources/views/themes/Charisma/recentforumposts.tpl similarity index 100% rename from public/themes/Charisma/recentforumposts.tpl rename to resources/views/themes/Charisma/recentforumposts.tpl diff --git a/public/themes/Charisma/register.tpl b/resources/views/themes/Charisma/register.tpl similarity index 100% rename from public/themes/Charisma/register.tpl rename to resources/views/themes/Charisma/register.tpl diff --git a/public/themes/Charisma/search.tpl b/resources/views/themes/Charisma/search.tpl similarity index 100% rename from public/themes/Charisma/search.tpl rename to resources/views/themes/Charisma/search.tpl diff --git a/public/themes/Charisma/searchraw.tpl b/resources/views/themes/Charisma/searchraw.tpl similarity index 100% rename from public/themes/Charisma/searchraw.tpl rename to resources/views/themes/Charisma/searchraw.tpl diff --git a/public/themes/Charisma/sitemap-xml.tpl b/resources/views/themes/Charisma/sitemap-xml.tpl similarity index 100% rename from public/themes/Charisma/sitemap-xml.tpl rename to resources/views/themes/Charisma/sitemap-xml.tpl diff --git a/public/themes/Charisma/sitemap.tpl b/resources/views/themes/Charisma/sitemap.tpl similarity index 100% rename from public/themes/Charisma/sitemap.tpl rename to resources/views/themes/Charisma/sitemap.tpl diff --git a/public/themes/Charisma/terms.tpl b/resources/views/themes/Charisma/terms.tpl similarity index 100% rename from public/themes/Charisma/terms.tpl rename to resources/views/themes/Charisma/terms.tpl diff --git a/public/themes/Charisma/usefullinksmenu.tpl b/resources/views/themes/Charisma/usefullinksmenu.tpl similarity index 100% rename from public/themes/Charisma/usefullinksmenu.tpl rename to resources/views/themes/Charisma/usefullinksmenu.tpl diff --git a/public/themes/Charisma/viewanime.tpl b/resources/views/themes/Charisma/viewanime.tpl similarity index 100% rename from public/themes/Charisma/viewanime.tpl rename to resources/views/themes/Charisma/viewanime.tpl diff --git a/public/themes/Charisma/viewanimelist.tpl b/resources/views/themes/Charisma/viewanimelist.tpl similarity index 100% rename from public/themes/Charisma/viewanimelist.tpl rename to resources/views/themes/Charisma/viewanimelist.tpl diff --git a/public/themes/Charisma/viewbook.tpl b/resources/views/themes/Charisma/viewbook.tpl similarity index 100% rename from public/themes/Charisma/viewbook.tpl rename to resources/views/themes/Charisma/viewbook.tpl diff --git a/public/themes/Charisma/viewconsole.tpl b/resources/views/themes/Charisma/viewconsole.tpl similarity index 100% rename from public/themes/Charisma/viewconsole.tpl rename to resources/views/themes/Charisma/viewconsole.tpl diff --git a/public/themes/Charisma/viewfilelist.tpl b/resources/views/themes/Charisma/viewfilelist.tpl similarity index 100% rename from public/themes/Charisma/viewfilelist.tpl rename to resources/views/themes/Charisma/viewfilelist.tpl diff --git a/public/themes/Charisma/viewmovie.tpl b/resources/views/themes/Charisma/viewmovie.tpl similarity index 100% rename from public/themes/Charisma/viewmovie.tpl rename to resources/views/themes/Charisma/viewmovie.tpl diff --git a/public/themes/Charisma/viewmoviefull.tpl b/resources/views/themes/Charisma/viewmoviefull.tpl similarity index 100% rename from public/themes/Charisma/viewmoviefull.tpl rename to resources/views/themes/Charisma/viewmoviefull.tpl diff --git a/public/themes/Charisma/viewmovietrailer.tpl b/resources/views/themes/Charisma/viewmovietrailer.tpl similarity index 100% rename from public/themes/Charisma/viewmovietrailer.tpl rename to resources/views/themes/Charisma/viewmovietrailer.tpl diff --git a/public/themes/Charisma/viewmusic.tpl b/resources/views/themes/Charisma/viewmusic.tpl similarity index 100% rename from public/themes/Charisma/viewmusic.tpl rename to resources/views/themes/Charisma/viewmusic.tpl diff --git a/public/themes/Charisma/viewnfo.tpl b/resources/views/themes/Charisma/viewnfo.tpl similarity index 100% rename from public/themes/Charisma/viewnfo.tpl rename to resources/views/themes/Charisma/viewnfo.tpl diff --git a/public/themes/Charisma/viewnzb.tpl b/resources/views/themes/Charisma/viewnzb.tpl similarity index 100% rename from public/themes/Charisma/viewnzb.tpl rename to resources/views/themes/Charisma/viewnzb.tpl diff --git a/public/themes/Charisma/viewqueue.tpl b/resources/views/themes/Charisma/viewqueue.tpl similarity index 100% rename from public/themes/Charisma/viewqueue.tpl rename to resources/views/themes/Charisma/viewqueue.tpl diff --git a/public/themes/Charisma/viewseries.tpl b/resources/views/themes/Charisma/viewseries.tpl similarity index 100% rename from public/themes/Charisma/viewseries.tpl rename to resources/views/themes/Charisma/viewseries.tpl diff --git a/public/themes/Charisma/viewserieslist.tpl b/resources/views/themes/Charisma/viewserieslist.tpl similarity index 100% rename from public/themes/Charisma/viewserieslist.tpl rename to resources/views/themes/Charisma/viewserieslist.tpl diff --git a/public/themes/Charisma/viewxxx.tpl b/resources/views/themes/Charisma/viewxxx.tpl similarity index 100% rename from public/themes/Charisma/viewxxx.tpl rename to resources/views/themes/Charisma/viewxxx.tpl diff --git a/public/themes/Charisma/viewxxxfull.tpl b/resources/views/themes/Charisma/viewxxxfull.tpl similarity index 100% rename from public/themes/Charisma/viewxxxfull.tpl rename to resources/views/themes/Charisma/viewxxxfull.tpl diff --git a/public/themes/Charisma/xxx.tpl b/resources/views/themes/Charisma/xxx.tpl similarity index 100% rename from public/themes/Charisma/xxx.tpl rename to resources/views/themes/Charisma/xxx.tpl diff --git a/public/themes/Gamma/articlesmenu.tpl b/resources/views/themes/Gamma/articlesmenu.tpl similarity index 100% rename from public/themes/Gamma/articlesmenu.tpl rename to resources/views/themes/Gamma/articlesmenu.tpl diff --git a/public/themes/Gamma/basepage.tpl b/resources/views/themes/Gamma/basepage.tpl similarity index 100% rename from public/themes/Gamma/basepage.tpl rename to resources/views/themes/Gamma/basepage.tpl diff --git a/public/themes/Gamma/books.tpl b/resources/views/themes/Gamma/books.tpl similarity index 100% rename from public/themes/Gamma/books.tpl rename to resources/views/themes/Gamma/books.tpl diff --git a/public/themes/Gamma/browse.tpl b/resources/views/themes/Gamma/browse.tpl similarity index 100% rename from public/themes/Gamma/browse.tpl rename to resources/views/themes/Gamma/browse.tpl diff --git a/public/themes/Gamma/browsegroup.tpl b/resources/views/themes/Gamma/browsegroup.tpl similarity index 100% rename from public/themes/Gamma/browsegroup.tpl rename to resources/views/themes/Gamma/browsegroup.tpl diff --git a/public/themes/Gamma/btc_payment.tpl b/resources/views/themes/Gamma/btc_payment.tpl similarity index 100% rename from public/themes/Gamma/btc_payment.tpl rename to resources/views/themes/Gamma/btc_payment.tpl diff --git a/public/themes/Gamma/cart.tpl b/resources/views/themes/Gamma/cart.tpl similarity index 100% rename from public/themes/Gamma/cart.tpl rename to resources/views/themes/Gamma/cart.tpl diff --git a/public/themes/Gamma/console.tpl b/resources/views/themes/Gamma/console.tpl similarity index 100% rename from public/themes/Gamma/console.tpl rename to resources/views/themes/Gamma/console.tpl diff --git a/public/themes/Gamma/contact.tpl b/resources/views/themes/Gamma/contact.tpl similarity index 100% rename from public/themes/Gamma/contact.tpl rename to resources/views/themes/Gamma/contact.tpl diff --git a/public/themes/Gamma/content.tpl b/resources/views/themes/Gamma/content.tpl similarity index 100% rename from public/themes/Gamma/content.tpl rename to resources/views/themes/Gamma/content.tpl diff --git a/public/themes/Gamma/forgottenpassword.tpl b/resources/views/themes/Gamma/forgottenpassword.tpl similarity index 100% rename from public/themes/Gamma/forgottenpassword.tpl rename to resources/views/themes/Gamma/forgottenpassword.tpl diff --git a/public/themes/Gamma/forum.tpl b/resources/views/themes/Gamma/forum.tpl similarity index 100% rename from public/themes/Gamma/forum.tpl rename to resources/views/themes/Gamma/forum.tpl diff --git a/public/themes/Gamma/forumpost.tpl b/resources/views/themes/Gamma/forumpost.tpl similarity index 100% rename from public/themes/Gamma/forumpost.tpl rename to resources/views/themes/Gamma/forumpost.tpl diff --git a/public/themes/Gamma/games.tpl b/resources/views/themes/Gamma/games.tpl similarity index 100% rename from public/themes/Gamma/games.tpl rename to resources/views/themes/Gamma/games.tpl diff --git a/public/themes/Gamma/headermenu.tpl b/resources/views/themes/Gamma/headermenu.tpl similarity index 100% rename from public/themes/Gamma/headermenu.tpl rename to resources/views/themes/Gamma/headermenu.tpl diff --git a/public/themes/Gamma/login.tpl b/resources/views/themes/Gamma/login.tpl similarity index 100% rename from public/themes/Gamma/login.tpl rename to resources/views/themes/Gamma/login.tpl diff --git a/public/themes/Gamma/mainmenu.tpl b/resources/views/themes/Gamma/mainmenu.tpl similarity index 100% rename from public/themes/Gamma/mainmenu.tpl rename to resources/views/themes/Gamma/mainmenu.tpl diff --git a/public/themes/Gamma/movies.tpl b/resources/views/themes/Gamma/movies.tpl similarity index 100% rename from public/themes/Gamma/movies.tpl rename to resources/views/themes/Gamma/movies.tpl diff --git a/public/themes/Gamma/multi-operations.tpl b/resources/views/themes/Gamma/multi-operations.tpl similarity index 100% rename from public/themes/Gamma/multi-operations.tpl rename to resources/views/themes/Gamma/multi-operations.tpl diff --git a/public/themes/Gamma/music.tpl b/resources/views/themes/Gamma/music.tpl similarity index 100% rename from public/themes/Gamma/music.tpl rename to resources/views/themes/Gamma/music.tpl diff --git a/public/themes/Gamma/mymovies-add.tpl b/resources/views/themes/Gamma/mymovies-add.tpl similarity index 100% rename from public/themes/Gamma/mymovies-add.tpl rename to resources/views/themes/Gamma/mymovies-add.tpl diff --git a/public/themes/Gamma/mymovies.tpl b/resources/views/themes/Gamma/mymovies.tpl similarity index 100% rename from public/themes/Gamma/mymovies.tpl rename to resources/views/themes/Gamma/mymovies.tpl diff --git a/public/themes/Gamma/myshows-add.tpl b/resources/views/themes/Gamma/myshows-add.tpl similarity index 100% rename from public/themes/Gamma/myshows-add.tpl rename to resources/views/themes/Gamma/myshows-add.tpl diff --git a/public/themes/Gamma/myshows.tpl b/resources/views/themes/Gamma/myshows.tpl similarity index 100% rename from public/themes/Gamma/myshows.tpl rename to resources/views/themes/Gamma/myshows.tpl diff --git a/public/themes/Gamma/nzbvortex-ajax.tpl b/resources/views/themes/Gamma/nzbvortex-ajax.tpl similarity index 100% rename from public/themes/Gamma/nzbvortex-ajax.tpl rename to resources/views/themes/Gamma/nzbvortex-ajax.tpl diff --git a/public/themes/Gamma/nzbvortex.tpl b/resources/views/themes/Gamma/nzbvortex.tpl similarity index 100% rename from public/themes/Gamma/nzbvortex.tpl rename to resources/views/themes/Gamma/nzbvortex.tpl diff --git a/public/themes/Gamma/opensearch.tpl b/resources/views/themes/Gamma/opensearch.tpl similarity index 100% rename from public/themes/Gamma/opensearch.tpl rename to resources/views/themes/Gamma/opensearch.tpl diff --git a/public/themes/Gamma/post_edit.tpl b/resources/views/themes/Gamma/post_edit.tpl similarity index 100% rename from public/themes/Gamma/post_edit.tpl rename to resources/views/themes/Gamma/post_edit.tpl diff --git a/public/themes/Gamma/profile.tpl b/resources/views/themes/Gamma/profile.tpl similarity index 100% rename from public/themes/Gamma/profile.tpl rename to resources/views/themes/Gamma/profile.tpl diff --git a/public/themes/Gamma/profileedit.tpl b/resources/views/themes/Gamma/profileedit.tpl similarity index 100% rename from public/themes/Gamma/profileedit.tpl rename to resources/views/themes/Gamma/profileedit.tpl diff --git a/public/themes/Gamma/recentforumposts.tpl b/resources/views/themes/Gamma/recentforumposts.tpl similarity index 100% rename from public/themes/Gamma/recentforumposts.tpl rename to resources/views/themes/Gamma/recentforumposts.tpl diff --git a/public/themes/Gamma/register.tpl b/resources/views/themes/Gamma/register.tpl similarity index 100% rename from public/themes/Gamma/register.tpl rename to resources/views/themes/Gamma/register.tpl diff --git a/public/themes/Gamma/scripts/bootstrap.js b/resources/views/themes/Gamma/scripts/bootstrap.js similarity index 100% rename from public/themes/Gamma/scripts/bootstrap.js rename to resources/views/themes/Gamma/scripts/bootstrap.js diff --git a/public/themes/Gamma/scripts/jquery-ias.js b/resources/views/themes/Gamma/scripts/jquery-ias.js similarity index 100% rename from public/themes/Gamma/scripts/jquery-ias.js rename to resources/views/themes/Gamma/scripts/jquery-ias.js diff --git a/public/themes/Gamma/scripts/jquery.infinitescroll.js b/resources/views/themes/Gamma/scripts/jquery.infinitescroll.js similarity index 100% rename from public/themes/Gamma/scripts/jquery.infinitescroll.js rename to resources/views/themes/Gamma/scripts/jquery.infinitescroll.js diff --git a/public/themes/Gamma/scripts/utils.js b/resources/views/themes/Gamma/scripts/utils.js similarity index 100% rename from public/themes/Gamma/scripts/utils.js rename to resources/views/themes/Gamma/scripts/utils.js diff --git a/public/themes/Gamma/search.tpl b/resources/views/themes/Gamma/search.tpl similarity index 100% rename from public/themes/Gamma/search.tpl rename to resources/views/themes/Gamma/search.tpl diff --git a/public/themes/Gamma/searchraw.tpl b/resources/views/themes/Gamma/searchraw.tpl similarity index 100% rename from public/themes/Gamma/searchraw.tpl rename to resources/views/themes/Gamma/searchraw.tpl diff --git a/public/themes/Gamma/sitemap-xml.tpl b/resources/views/themes/Gamma/sitemap-xml.tpl similarity index 100% rename from public/themes/Gamma/sitemap-xml.tpl rename to resources/views/themes/Gamma/sitemap-xml.tpl diff --git a/public/themes/Gamma/sitemap.tpl b/resources/views/themes/Gamma/sitemap.tpl similarity index 100% rename from public/themes/Gamma/sitemap.tpl rename to resources/views/themes/Gamma/sitemap.tpl diff --git a/public/themes/Gamma/styles/admin.css b/resources/views/themes/Gamma/styles/admin.css similarity index 100% rename from public/themes/Gamma/styles/admin.css rename to resources/views/themes/Gamma/styles/admin.css diff --git a/public/themes/Gamma/styles/bootstrap-fixes.css b/resources/views/themes/Gamma/styles/bootstrap-fixes.css similarity index 100% rename from public/themes/Gamma/styles/bootstrap-fixes.css rename to resources/views/themes/Gamma/styles/bootstrap-fixes.css diff --git a/public/themes/Gamma/styles/bootstrap.css b/resources/views/themes/Gamma/styles/bootstrap.css similarity index 100% rename from public/themes/Gamma/styles/bootstrap.css rename to resources/views/themes/Gamma/styles/bootstrap.css diff --git a/public/themes/Gamma/styles/bootstrap.cyborg.css b/resources/views/themes/Gamma/styles/bootstrap.cyborg.css similarity index 100% rename from public/themes/Gamma/styles/bootstrap.cyborg.css rename to resources/views/themes/Gamma/styles/bootstrap.cyborg.css diff --git a/public/themes/Gamma/styles/bootstrap.slate.min.css b/resources/views/themes/Gamma/styles/bootstrap.slate.min.css similarity index 100% rename from public/themes/Gamma/styles/bootstrap.slate.min.css rename to resources/views/themes/Gamma/styles/bootstrap.slate.min.css diff --git a/public/themes/Gamma/styles/extra.css b/resources/views/themes/Gamma/styles/extra.css similarity index 100% rename from public/themes/Gamma/styles/extra.css rename to resources/views/themes/Gamma/styles/extra.css diff --git a/public/themes/Gamma/styles/install.css b/resources/views/themes/Gamma/styles/install.css similarity index 100% rename from public/themes/Gamma/styles/install.css rename to resources/views/themes/Gamma/styles/install.css diff --git a/public/themes/Gamma/styles/jquery.pnotify.default.css b/resources/views/themes/Gamma/styles/jquery.pnotify.default.css similarity index 100% rename from public/themes/Gamma/styles/jquery.pnotify.default.css rename to resources/views/themes/Gamma/styles/jquery.pnotify.default.css diff --git a/public/themes/Gamma/styles/style.css b/resources/views/themes/Gamma/styles/style.css similarity index 100% rename from public/themes/Gamma/styles/style.css rename to resources/views/themes/Gamma/styles/style.css diff --git a/public/themes/Gamma/styles/style.ie.css b/resources/views/themes/Gamma/styles/style.ie.css similarity index 100% rename from public/themes/Gamma/styles/style.ie.css rename to resources/views/themes/Gamma/styles/style.ie.css diff --git a/public/themes/Gamma/terms.tpl b/resources/views/themes/Gamma/terms.tpl similarity index 100% rename from public/themes/Gamma/terms.tpl rename to resources/views/themes/Gamma/terms.tpl diff --git a/public/themes/Gamma/usefullinksmenu.tpl b/resources/views/themes/Gamma/usefullinksmenu.tpl similarity index 100% rename from public/themes/Gamma/usefullinksmenu.tpl rename to resources/views/themes/Gamma/usefullinksmenu.tpl diff --git a/public/themes/Gamma/viewanime.tpl b/resources/views/themes/Gamma/viewanime.tpl similarity index 100% rename from public/themes/Gamma/viewanime.tpl rename to resources/views/themes/Gamma/viewanime.tpl diff --git a/public/themes/Gamma/viewanimelist.tpl b/resources/views/themes/Gamma/viewanimelist.tpl similarity index 100% rename from public/themes/Gamma/viewanimelist.tpl rename to resources/views/themes/Gamma/viewanimelist.tpl diff --git a/public/themes/Gamma/viewbook.tpl b/resources/views/themes/Gamma/viewbook.tpl similarity index 100% rename from public/themes/Gamma/viewbook.tpl rename to resources/views/themes/Gamma/viewbook.tpl diff --git a/public/themes/Gamma/viewconsole.tpl b/resources/views/themes/Gamma/viewconsole.tpl similarity index 100% rename from public/themes/Gamma/viewconsole.tpl rename to resources/views/themes/Gamma/viewconsole.tpl diff --git a/public/themes/Gamma/viewfilelist.tpl b/resources/views/themes/Gamma/viewfilelist.tpl similarity index 100% rename from public/themes/Gamma/viewfilelist.tpl rename to resources/views/themes/Gamma/viewfilelist.tpl diff --git a/public/themes/Gamma/viewmovie.tpl b/resources/views/themes/Gamma/viewmovie.tpl similarity index 100% rename from public/themes/Gamma/viewmovie.tpl rename to resources/views/themes/Gamma/viewmovie.tpl diff --git a/public/themes/Gamma/viewmoviefull.tpl b/resources/views/themes/Gamma/viewmoviefull.tpl similarity index 100% rename from public/themes/Gamma/viewmoviefull.tpl rename to resources/views/themes/Gamma/viewmoviefull.tpl diff --git a/public/themes/Gamma/viewmovietrailer.tpl b/resources/views/themes/Gamma/viewmovietrailer.tpl similarity index 100% rename from public/themes/Gamma/viewmovietrailer.tpl rename to resources/views/themes/Gamma/viewmovietrailer.tpl diff --git a/public/themes/Gamma/viewmusic.tpl b/resources/views/themes/Gamma/viewmusic.tpl similarity index 100% rename from public/themes/Gamma/viewmusic.tpl rename to resources/views/themes/Gamma/viewmusic.tpl diff --git a/public/themes/Gamma/viewnfo.tpl b/resources/views/themes/Gamma/viewnfo.tpl similarity index 100% rename from public/themes/Gamma/viewnfo.tpl rename to resources/views/themes/Gamma/viewnfo.tpl diff --git a/public/themes/Gamma/viewnzb.tpl b/resources/views/themes/Gamma/viewnzb.tpl similarity index 100% rename from public/themes/Gamma/viewnzb.tpl rename to resources/views/themes/Gamma/viewnzb.tpl diff --git a/public/themes/Gamma/viewqueue.tpl b/resources/views/themes/Gamma/viewqueue.tpl similarity index 100% rename from public/themes/Gamma/viewqueue.tpl rename to resources/views/themes/Gamma/viewqueue.tpl diff --git a/public/themes/Gamma/viewseries.tpl b/resources/views/themes/Gamma/viewseries.tpl similarity index 100% rename from public/themes/Gamma/viewseries.tpl rename to resources/views/themes/Gamma/viewseries.tpl diff --git a/public/themes/Gamma/viewserieslist.tpl b/resources/views/themes/Gamma/viewserieslist.tpl similarity index 100% rename from public/themes/Gamma/viewserieslist.tpl rename to resources/views/themes/Gamma/viewserieslist.tpl diff --git a/public/themes/Gamma/viewxxx.tpl b/resources/views/themes/Gamma/viewxxx.tpl similarity index 100% rename from public/themes/Gamma/viewxxx.tpl rename to resources/views/themes/Gamma/viewxxx.tpl diff --git a/public/themes/Gamma/viewxxxfull.tpl b/resources/views/themes/Gamma/viewxxxfull.tpl similarity index 100% rename from public/themes/Gamma/viewxxxfull.tpl rename to resources/views/themes/Gamma/viewxxxfull.tpl diff --git a/public/themes/Gamma/xxx.tpl b/resources/views/themes/Gamma/xxx.tpl similarity index 100% rename from public/themes/Gamma/xxx.tpl rename to resources/views/themes/Gamma/xxx.tpl diff --git a/public/themes/Gentele/articlesmenu.tpl b/resources/views/themes/Gentele/articlesmenu.tpl similarity index 100% rename from public/themes/Gentele/articlesmenu.tpl rename to resources/views/themes/Gentele/articlesmenu.tpl diff --git a/public/themes/Gentele/basepage.tpl b/resources/views/themes/Gentele/basepage.tpl similarity index 100% rename from public/themes/Gentele/basepage.tpl rename to resources/views/themes/Gentele/basepage.tpl diff --git a/public/themes/Gentele/books.tpl b/resources/views/themes/Gentele/books.tpl similarity index 100% rename from public/themes/Gentele/books.tpl rename to resources/views/themes/Gentele/books.tpl diff --git a/public/themes/Gentele/browse.tpl b/resources/views/themes/Gentele/browse.tpl similarity index 100% rename from public/themes/Gentele/browse.tpl rename to resources/views/themes/Gentele/browse.tpl diff --git a/public/themes/Gentele/browsegroup.tpl b/resources/views/themes/Gentele/browsegroup.tpl similarity index 100% rename from public/themes/Gentele/browsegroup.tpl rename to resources/views/themes/Gentele/browsegroup.tpl diff --git a/public/themes/Gentele/btc_payment.tpl b/resources/views/themes/Gentele/btc_payment.tpl similarity index 100% rename from public/themes/Gentele/btc_payment.tpl rename to resources/views/themes/Gentele/btc_payment.tpl diff --git a/public/themes/Gentele/cart.tpl b/resources/views/themes/Gentele/cart.tpl similarity index 100% rename from public/themes/Gentele/cart.tpl rename to resources/views/themes/Gentele/cart.tpl diff --git a/public/themes/Gentele/console.tpl b/resources/views/themes/Gentele/console.tpl similarity index 100% rename from public/themes/Gentele/console.tpl rename to resources/views/themes/Gentele/console.tpl diff --git a/public/themes/Gentele/contact.tpl b/resources/views/themes/Gentele/contact.tpl similarity index 100% rename from public/themes/Gentele/contact.tpl rename to resources/views/themes/Gentele/contact.tpl diff --git a/public/themes/Gentele/content.tpl b/resources/views/themes/Gentele/content.tpl similarity index 100% rename from public/themes/Gentele/content.tpl rename to resources/views/themes/Gentele/content.tpl diff --git a/public/themes/Gentele/forgottenpassword.tpl b/resources/views/themes/Gentele/forgottenpassword.tpl similarity index 100% rename from public/themes/Gentele/forgottenpassword.tpl rename to resources/views/themes/Gentele/forgottenpassword.tpl diff --git a/public/themes/Gentele/forum.tpl b/resources/views/themes/Gentele/forum.tpl similarity index 100% rename from public/themes/Gentele/forum.tpl rename to resources/views/themes/Gentele/forum.tpl diff --git a/public/themes/Gentele/forumpost.tpl b/resources/views/themes/Gentele/forumpost.tpl similarity index 100% rename from public/themes/Gentele/forumpost.tpl rename to resources/views/themes/Gentele/forumpost.tpl diff --git a/public/themes/Gentele/games.tpl b/resources/views/themes/Gentele/games.tpl similarity index 100% rename from public/themes/Gentele/games.tpl rename to resources/views/themes/Gentele/games.tpl diff --git a/public/themes/Gentele/headermenu.tpl b/resources/views/themes/Gentele/headermenu.tpl similarity index 100% rename from public/themes/Gentele/headermenu.tpl rename to resources/views/themes/Gentele/headermenu.tpl diff --git a/public/themes/Gentele/login.tpl b/resources/views/themes/Gentele/login.tpl similarity index 100% rename from public/themes/Gentele/login.tpl rename to resources/views/themes/Gentele/login.tpl diff --git a/public/themes/Gentele/mainmenu.tpl b/resources/views/themes/Gentele/mainmenu.tpl similarity index 100% rename from public/themes/Gentele/mainmenu.tpl rename to resources/views/themes/Gentele/mainmenu.tpl diff --git a/public/themes/Gentele/movies.tpl b/resources/views/themes/Gentele/movies.tpl similarity index 100% rename from public/themes/Gentele/movies.tpl rename to resources/views/themes/Gentele/movies.tpl diff --git a/public/themes/Gentele/multi-operations.tpl b/resources/views/themes/Gentele/multi-operations.tpl similarity index 100% rename from public/themes/Gentele/multi-operations.tpl rename to resources/views/themes/Gentele/multi-operations.tpl diff --git a/public/themes/Gentele/music.tpl b/resources/views/themes/Gentele/music.tpl similarity index 100% rename from public/themes/Gentele/music.tpl rename to resources/views/themes/Gentele/music.tpl diff --git a/public/themes/Gentele/mymovies-add.tpl b/resources/views/themes/Gentele/mymovies-add.tpl similarity index 100% rename from public/themes/Gentele/mymovies-add.tpl rename to resources/views/themes/Gentele/mymovies-add.tpl diff --git a/public/themes/Gentele/mymovies.tpl b/resources/views/themes/Gentele/mymovies.tpl similarity index 100% rename from public/themes/Gentele/mymovies.tpl rename to resources/views/themes/Gentele/mymovies.tpl diff --git a/public/themes/Gentele/myshows-add.tpl b/resources/views/themes/Gentele/myshows-add.tpl similarity index 100% rename from public/themes/Gentele/myshows-add.tpl rename to resources/views/themes/Gentele/myshows-add.tpl diff --git a/public/themes/Gentele/myshows.tpl b/resources/views/themes/Gentele/myshows.tpl similarity index 100% rename from public/themes/Gentele/myshows.tpl rename to resources/views/themes/Gentele/myshows.tpl diff --git a/public/themes/Gentele/nzbvortex-ajax.tpl b/resources/views/themes/Gentele/nzbvortex-ajax.tpl similarity index 100% rename from public/themes/Gentele/nzbvortex-ajax.tpl rename to resources/views/themes/Gentele/nzbvortex-ajax.tpl diff --git a/public/themes/Gentele/nzbvortex.tpl b/resources/views/themes/Gentele/nzbvortex.tpl similarity index 100% rename from public/themes/Gentele/nzbvortex.tpl rename to resources/views/themes/Gentele/nzbvortex.tpl diff --git a/public/themes/Gentele/opensearch.tpl b/resources/views/themes/Gentele/opensearch.tpl similarity index 100% rename from public/themes/Gentele/opensearch.tpl rename to resources/views/themes/Gentele/opensearch.tpl diff --git a/public/themes/Gentele/post_edit.tpl b/resources/views/themes/Gentele/post_edit.tpl similarity index 100% rename from public/themes/Gentele/post_edit.tpl rename to resources/views/themes/Gentele/post_edit.tpl diff --git a/public/themes/Gentele/profile.tpl b/resources/views/themes/Gentele/profile.tpl similarity index 100% rename from public/themes/Gentele/profile.tpl rename to resources/views/themes/Gentele/profile.tpl diff --git a/public/themes/Gentele/profileedit.tpl b/resources/views/themes/Gentele/profileedit.tpl similarity index 100% rename from public/themes/Gentele/profileedit.tpl rename to resources/views/themes/Gentele/profileedit.tpl diff --git a/public/themes/Gentele/recentforumposts.tpl b/resources/views/themes/Gentele/recentforumposts.tpl similarity index 100% rename from public/themes/Gentele/recentforumposts.tpl rename to resources/views/themes/Gentele/recentforumposts.tpl diff --git a/public/themes/Gentele/register.tpl b/resources/views/themes/Gentele/register.tpl similarity index 100% rename from public/themes/Gentele/register.tpl rename to resources/views/themes/Gentele/register.tpl diff --git a/public/themes/Gentele/search.tpl b/resources/views/themes/Gentele/search.tpl similarity index 100% rename from public/themes/Gentele/search.tpl rename to resources/views/themes/Gentele/search.tpl diff --git a/public/themes/Gentele/searchraw.tpl b/resources/views/themes/Gentele/searchraw.tpl similarity index 100% rename from public/themes/Gentele/searchraw.tpl rename to resources/views/themes/Gentele/searchraw.tpl diff --git a/public/themes/Gentele/sitemap-xml.tpl b/resources/views/themes/Gentele/sitemap-xml.tpl similarity index 100% rename from public/themes/Gentele/sitemap-xml.tpl rename to resources/views/themes/Gentele/sitemap-xml.tpl diff --git a/public/themes/Gentele/sitemap.tpl b/resources/views/themes/Gentele/sitemap.tpl similarity index 100% rename from public/themes/Gentele/sitemap.tpl rename to resources/views/themes/Gentele/sitemap.tpl diff --git a/public/themes/Gentele/terms.tpl b/resources/views/themes/Gentele/terms.tpl similarity index 100% rename from public/themes/Gentele/terms.tpl rename to resources/views/themes/Gentele/terms.tpl diff --git a/public/themes/Gentele/usefullinksmenu.tpl b/resources/views/themes/Gentele/usefullinksmenu.tpl similarity index 100% rename from public/themes/Gentele/usefullinksmenu.tpl rename to resources/views/themes/Gentele/usefullinksmenu.tpl diff --git a/public/themes/Gentele/viewanime.tpl b/resources/views/themes/Gentele/viewanime.tpl similarity index 100% rename from public/themes/Gentele/viewanime.tpl rename to resources/views/themes/Gentele/viewanime.tpl diff --git a/public/themes/Gentele/viewanimelist.tpl b/resources/views/themes/Gentele/viewanimelist.tpl similarity index 100% rename from public/themes/Gentele/viewanimelist.tpl rename to resources/views/themes/Gentele/viewanimelist.tpl diff --git a/public/themes/Gentele/viewbook.tpl b/resources/views/themes/Gentele/viewbook.tpl similarity index 100% rename from public/themes/Gentele/viewbook.tpl rename to resources/views/themes/Gentele/viewbook.tpl diff --git a/public/themes/Gentele/viewconsole.tpl b/resources/views/themes/Gentele/viewconsole.tpl similarity index 100% rename from public/themes/Gentele/viewconsole.tpl rename to resources/views/themes/Gentele/viewconsole.tpl diff --git a/public/themes/Gentele/viewfilelist.tpl b/resources/views/themes/Gentele/viewfilelist.tpl similarity index 100% rename from public/themes/Gentele/viewfilelist.tpl rename to resources/views/themes/Gentele/viewfilelist.tpl diff --git a/public/themes/Gentele/viewmovie.tpl b/resources/views/themes/Gentele/viewmovie.tpl similarity index 100% rename from public/themes/Gentele/viewmovie.tpl rename to resources/views/themes/Gentele/viewmovie.tpl diff --git a/public/themes/Gentele/viewmoviefull.tpl b/resources/views/themes/Gentele/viewmoviefull.tpl similarity index 100% rename from public/themes/Gentele/viewmoviefull.tpl rename to resources/views/themes/Gentele/viewmoviefull.tpl diff --git a/public/themes/Gentele/viewmovietrailer.tpl b/resources/views/themes/Gentele/viewmovietrailer.tpl similarity index 100% rename from public/themes/Gentele/viewmovietrailer.tpl rename to resources/views/themes/Gentele/viewmovietrailer.tpl diff --git a/public/themes/Gentele/viewmusic.tpl b/resources/views/themes/Gentele/viewmusic.tpl similarity index 100% rename from public/themes/Gentele/viewmusic.tpl rename to resources/views/themes/Gentele/viewmusic.tpl diff --git a/public/themes/Gentele/viewnfo.tpl b/resources/views/themes/Gentele/viewnfo.tpl similarity index 100% rename from public/themes/Gentele/viewnfo.tpl rename to resources/views/themes/Gentele/viewnfo.tpl diff --git a/public/themes/Gentele/viewnzb.tpl b/resources/views/themes/Gentele/viewnzb.tpl similarity index 100% rename from public/themes/Gentele/viewnzb.tpl rename to resources/views/themes/Gentele/viewnzb.tpl diff --git a/public/themes/Gentele/viewqueue.tpl b/resources/views/themes/Gentele/viewqueue.tpl similarity index 100% rename from public/themes/Gentele/viewqueue.tpl rename to resources/views/themes/Gentele/viewqueue.tpl diff --git a/public/themes/Gentele/viewseries.tpl b/resources/views/themes/Gentele/viewseries.tpl similarity index 100% rename from public/themes/Gentele/viewseries.tpl rename to resources/views/themes/Gentele/viewseries.tpl diff --git a/public/themes/Gentele/viewserieslist.tpl b/resources/views/themes/Gentele/viewserieslist.tpl similarity index 100% rename from public/themes/Gentele/viewserieslist.tpl rename to resources/views/themes/Gentele/viewserieslist.tpl diff --git a/public/themes/Gentele/viewxxx.tpl b/resources/views/themes/Gentele/viewxxx.tpl similarity index 100% rename from public/themes/Gentele/viewxxx.tpl rename to resources/views/themes/Gentele/viewxxx.tpl diff --git a/public/themes/Gentele/viewxxxfull.tpl b/resources/views/themes/Gentele/viewxxxfull.tpl similarity index 100% rename from public/themes/Gentele/viewxxxfull.tpl rename to resources/views/themes/Gentele/viewxxxfull.tpl diff --git a/public/themes/Gentele/xxx.tpl b/resources/views/themes/Gentele/xxx.tpl similarity index 100% rename from public/themes/Gentele/xxx.tpl rename to resources/views/themes/Gentele/xxx.tpl diff --git a/public/themes/Omicron/basepage.tpl b/resources/views/themes/Omicron/basepage.tpl similarity index 100% rename from public/themes/Omicron/basepage.tpl rename to resources/views/themes/Omicron/basepage.tpl diff --git a/public/themes/Omicron/books.tpl b/resources/views/themes/Omicron/books.tpl similarity index 100% rename from public/themes/Omicron/books.tpl rename to resources/views/themes/Omicron/books.tpl diff --git a/public/themes/Omicron/browse.tpl b/resources/views/themes/Omicron/browse.tpl similarity index 100% rename from public/themes/Omicron/browse.tpl rename to resources/views/themes/Omicron/browse.tpl diff --git a/public/themes/Omicron/browsegroup.tpl b/resources/views/themes/Omicron/browsegroup.tpl similarity index 100% rename from public/themes/Omicron/browsegroup.tpl rename to resources/views/themes/Omicron/browsegroup.tpl diff --git a/public/themes/Omicron/btc_payment.tpl b/resources/views/themes/Omicron/btc_payment.tpl similarity index 100% rename from public/themes/Omicron/btc_payment.tpl rename to resources/views/themes/Omicron/btc_payment.tpl diff --git a/public/themes/Omicron/cart.tpl b/resources/views/themes/Omicron/cart.tpl similarity index 100% rename from public/themes/Omicron/cart.tpl rename to resources/views/themes/Omicron/cart.tpl diff --git a/public/themes/Omicron/console.tpl b/resources/views/themes/Omicron/console.tpl similarity index 100% rename from public/themes/Omicron/console.tpl rename to resources/views/themes/Omicron/console.tpl diff --git a/public/themes/Omicron/contact.tpl b/resources/views/themes/Omicron/contact.tpl similarity index 100% rename from public/themes/Omicron/contact.tpl rename to resources/views/themes/Omicron/contact.tpl diff --git a/public/themes/Omicron/content.tpl b/resources/views/themes/Omicron/content.tpl similarity index 100% rename from public/themes/Omicron/content.tpl rename to resources/views/themes/Omicron/content.tpl diff --git a/public/themes/Omicron/dist/css/AdminLTE.css b/resources/views/themes/Omicron/dist/css/AdminLTE.css similarity index 100% rename from public/themes/Omicron/dist/css/AdminLTE.css rename to resources/views/themes/Omicron/dist/css/AdminLTE.css diff --git a/public/themes/Omicron/dist/css/AdminLTE.min.css b/resources/views/themes/Omicron/dist/css/AdminLTE.min.css similarity index 100% rename from public/themes/Omicron/dist/css/AdminLTE.min.css rename to resources/views/themes/Omicron/dist/css/AdminLTE.min.css diff --git a/public/themes/Omicron/dist/css/alt/AdminLTE-bootstrap-social.css b/resources/views/themes/Omicron/dist/css/alt/AdminLTE-bootstrap-social.css similarity index 100% rename from public/themes/Omicron/dist/css/alt/AdminLTE-bootstrap-social.css rename to resources/views/themes/Omicron/dist/css/alt/AdminLTE-bootstrap-social.css diff --git a/public/themes/Omicron/dist/css/alt/AdminLTE-bootstrap-social.min.css b/resources/views/themes/Omicron/dist/css/alt/AdminLTE-bootstrap-social.min.css similarity index 100% rename from public/themes/Omicron/dist/css/alt/AdminLTE-bootstrap-social.min.css rename to resources/views/themes/Omicron/dist/css/alt/AdminLTE-bootstrap-social.min.css diff --git a/public/themes/Omicron/dist/css/alt/AdminLTE-fullcalendar.css b/resources/views/themes/Omicron/dist/css/alt/AdminLTE-fullcalendar.css similarity index 100% rename from public/themes/Omicron/dist/css/alt/AdminLTE-fullcalendar.css rename to resources/views/themes/Omicron/dist/css/alt/AdminLTE-fullcalendar.css diff --git a/public/themes/Omicron/dist/css/alt/AdminLTE-fullcalendar.min.css b/resources/views/themes/Omicron/dist/css/alt/AdminLTE-fullcalendar.min.css similarity index 100% rename from public/themes/Omicron/dist/css/alt/AdminLTE-fullcalendar.min.css rename to resources/views/themes/Omicron/dist/css/alt/AdminLTE-fullcalendar.min.css diff --git a/public/themes/Omicron/dist/css/alt/AdminLTE-select2.css b/resources/views/themes/Omicron/dist/css/alt/AdminLTE-select2.css similarity index 100% rename from public/themes/Omicron/dist/css/alt/AdminLTE-select2.css rename to resources/views/themes/Omicron/dist/css/alt/AdminLTE-select2.css diff --git a/public/themes/Omicron/dist/css/alt/AdminLTE-select2.min.css b/resources/views/themes/Omicron/dist/css/alt/AdminLTE-select2.min.css similarity index 100% rename from public/themes/Omicron/dist/css/alt/AdminLTE-select2.min.css rename to resources/views/themes/Omicron/dist/css/alt/AdminLTE-select2.min.css diff --git a/public/themes/Omicron/dist/css/alt/AdminLTE-without-plugins.css b/resources/views/themes/Omicron/dist/css/alt/AdminLTE-without-plugins.css similarity index 100% rename from public/themes/Omicron/dist/css/alt/AdminLTE-without-plugins.css rename to resources/views/themes/Omicron/dist/css/alt/AdminLTE-without-plugins.css diff --git a/public/themes/Omicron/dist/css/alt/AdminLTE-without-plugins.min.css b/resources/views/themes/Omicron/dist/css/alt/AdminLTE-without-plugins.min.css similarity index 100% rename from public/themes/Omicron/dist/css/alt/AdminLTE-without-plugins.min.css rename to resources/views/themes/Omicron/dist/css/alt/AdminLTE-without-plugins.min.css diff --git a/public/themes/Omicron/dist/css/skins/_all-skins.css b/resources/views/themes/Omicron/dist/css/skins/_all-skins.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/_all-skins.css rename to resources/views/themes/Omicron/dist/css/skins/_all-skins.css diff --git a/public/themes/Omicron/dist/css/skins/_all-skins.min.css b/resources/views/themes/Omicron/dist/css/skins/_all-skins.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/_all-skins.min.css rename to resources/views/themes/Omicron/dist/css/skins/_all-skins.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-black-light.css b/resources/views/themes/Omicron/dist/css/skins/skin-black-light.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-black-light.css rename to resources/views/themes/Omicron/dist/css/skins/skin-black-light.css diff --git a/public/themes/Omicron/dist/css/skins/skin-black-light.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-black-light.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-black-light.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-black-light.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-black.css b/resources/views/themes/Omicron/dist/css/skins/skin-black.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-black.css rename to resources/views/themes/Omicron/dist/css/skins/skin-black.css diff --git a/public/themes/Omicron/dist/css/skins/skin-black.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-black.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-black.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-black.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-blue-light.css b/resources/views/themes/Omicron/dist/css/skins/skin-blue-light.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-blue-light.css rename to resources/views/themes/Omicron/dist/css/skins/skin-blue-light.css diff --git a/public/themes/Omicron/dist/css/skins/skin-blue-light.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-blue-light.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-blue-light.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-blue-light.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-blue.css b/resources/views/themes/Omicron/dist/css/skins/skin-blue.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-blue.css rename to resources/views/themes/Omicron/dist/css/skins/skin-blue.css diff --git a/public/themes/Omicron/dist/css/skins/skin-blue.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-blue.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-blue.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-blue.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-green-light.css b/resources/views/themes/Omicron/dist/css/skins/skin-green-light.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-green-light.css rename to resources/views/themes/Omicron/dist/css/skins/skin-green-light.css diff --git a/public/themes/Omicron/dist/css/skins/skin-green-light.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-green-light.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-green-light.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-green-light.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-green.css b/resources/views/themes/Omicron/dist/css/skins/skin-green.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-green.css rename to resources/views/themes/Omicron/dist/css/skins/skin-green.css diff --git a/public/themes/Omicron/dist/css/skins/skin-green.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-green.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-green.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-green.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-purple-light.css b/resources/views/themes/Omicron/dist/css/skins/skin-purple-light.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-purple-light.css rename to resources/views/themes/Omicron/dist/css/skins/skin-purple-light.css diff --git a/public/themes/Omicron/dist/css/skins/skin-purple-light.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-purple-light.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-purple-light.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-purple-light.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-purple.css b/resources/views/themes/Omicron/dist/css/skins/skin-purple.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-purple.css rename to resources/views/themes/Omicron/dist/css/skins/skin-purple.css diff --git a/public/themes/Omicron/dist/css/skins/skin-purple.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-purple.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-purple.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-purple.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-red-light.css b/resources/views/themes/Omicron/dist/css/skins/skin-red-light.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-red-light.css rename to resources/views/themes/Omicron/dist/css/skins/skin-red-light.css diff --git a/public/themes/Omicron/dist/css/skins/skin-red-light.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-red-light.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-red-light.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-red-light.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-red.css b/resources/views/themes/Omicron/dist/css/skins/skin-red.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-red.css rename to resources/views/themes/Omicron/dist/css/skins/skin-red.css diff --git a/public/themes/Omicron/dist/css/skins/skin-red.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-red.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-red.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-red.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-yellow-light.css b/resources/views/themes/Omicron/dist/css/skins/skin-yellow-light.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-yellow-light.css rename to resources/views/themes/Omicron/dist/css/skins/skin-yellow-light.css diff --git a/public/themes/Omicron/dist/css/skins/skin-yellow-light.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-yellow-light.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-yellow-light.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-yellow-light.min.css diff --git a/public/themes/Omicron/dist/css/skins/skin-yellow.css b/resources/views/themes/Omicron/dist/css/skins/skin-yellow.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-yellow.css rename to resources/views/themes/Omicron/dist/css/skins/skin-yellow.css diff --git a/public/themes/Omicron/dist/css/skins/skin-yellow.min.css b/resources/views/themes/Omicron/dist/css/skins/skin-yellow.min.css similarity index 100% rename from public/themes/Omicron/dist/css/skins/skin-yellow.min.css rename to resources/views/themes/Omicron/dist/css/skins/skin-yellow.min.css diff --git a/public/themes/Omicron/dist/img/avatar.png b/resources/views/themes/Omicron/dist/img/avatar.png similarity index 100% rename from public/themes/Omicron/dist/img/avatar.png rename to resources/views/themes/Omicron/dist/img/avatar.png diff --git a/public/themes/Omicron/dist/img/avatar04.png b/resources/views/themes/Omicron/dist/img/avatar04.png similarity index 100% rename from public/themes/Omicron/dist/img/avatar04.png rename to resources/views/themes/Omicron/dist/img/avatar04.png diff --git a/public/themes/Omicron/dist/img/avatar2.png b/resources/views/themes/Omicron/dist/img/avatar2.png similarity index 100% rename from public/themes/Omicron/dist/img/avatar2.png rename to resources/views/themes/Omicron/dist/img/avatar2.png diff --git a/public/themes/Omicron/dist/img/avatar3.png b/resources/views/themes/Omicron/dist/img/avatar3.png similarity index 100% rename from public/themes/Omicron/dist/img/avatar3.png rename to resources/views/themes/Omicron/dist/img/avatar3.png diff --git a/public/themes/Omicron/dist/img/avatar5.png b/resources/views/themes/Omicron/dist/img/avatar5.png similarity index 100% rename from public/themes/Omicron/dist/img/avatar5.png rename to resources/views/themes/Omicron/dist/img/avatar5.png diff --git a/public/themes/Omicron/dist/img/boxed-bg.jpg b/resources/views/themes/Omicron/dist/img/boxed-bg.jpg similarity index 100% rename from public/themes/Omicron/dist/img/boxed-bg.jpg rename to resources/views/themes/Omicron/dist/img/boxed-bg.jpg diff --git a/public/themes/Omicron/dist/img/boxed-bg.png b/resources/views/themes/Omicron/dist/img/boxed-bg.png similarity index 100% rename from public/themes/Omicron/dist/img/boxed-bg.png rename to resources/views/themes/Omicron/dist/img/boxed-bg.png diff --git a/public/themes/Omicron/dist/img/credit/american-express.png b/resources/views/themes/Omicron/dist/img/credit/american-express.png similarity index 100% rename from public/themes/Omicron/dist/img/credit/american-express.png rename to resources/views/themes/Omicron/dist/img/credit/american-express.png diff --git a/public/themes/Omicron/dist/img/credit/cirrus.png b/resources/views/themes/Omicron/dist/img/credit/cirrus.png similarity index 100% rename from public/themes/Omicron/dist/img/credit/cirrus.png rename to resources/views/themes/Omicron/dist/img/credit/cirrus.png diff --git a/public/themes/Omicron/dist/img/credit/mastercard.png b/resources/views/themes/Omicron/dist/img/credit/mastercard.png similarity index 100% rename from public/themes/Omicron/dist/img/credit/mastercard.png rename to resources/views/themes/Omicron/dist/img/credit/mastercard.png diff --git a/public/themes/Omicron/dist/img/credit/mestro.png b/resources/views/themes/Omicron/dist/img/credit/mestro.png similarity index 100% rename from public/themes/Omicron/dist/img/credit/mestro.png rename to resources/views/themes/Omicron/dist/img/credit/mestro.png diff --git a/public/themes/Omicron/dist/img/credit/paypal.png b/resources/views/themes/Omicron/dist/img/credit/paypal.png similarity index 100% rename from public/themes/Omicron/dist/img/credit/paypal.png rename to resources/views/themes/Omicron/dist/img/credit/paypal.png diff --git a/public/themes/Omicron/dist/img/credit/paypal2.png b/resources/views/themes/Omicron/dist/img/credit/paypal2.png similarity index 100% rename from public/themes/Omicron/dist/img/credit/paypal2.png rename to resources/views/themes/Omicron/dist/img/credit/paypal2.png diff --git a/public/themes/Omicron/dist/img/credit/visa.png b/resources/views/themes/Omicron/dist/img/credit/visa.png similarity index 100% rename from public/themes/Omicron/dist/img/credit/visa.png rename to resources/views/themes/Omicron/dist/img/credit/visa.png diff --git a/public/themes/Omicron/dist/img/default-50x50.gif b/resources/views/themes/Omicron/dist/img/default-50x50.gif similarity index 100% rename from public/themes/Omicron/dist/img/default-50x50.gif rename to resources/views/themes/Omicron/dist/img/default-50x50.gif diff --git a/public/themes/Omicron/dist/img/icons.png b/resources/views/themes/Omicron/dist/img/icons.png similarity index 100% rename from public/themes/Omicron/dist/img/icons.png rename to resources/views/themes/Omicron/dist/img/icons.png diff --git a/public/themes/Omicron/dist/img/photo1.png b/resources/views/themes/Omicron/dist/img/photo1.png similarity index 100% rename from public/themes/Omicron/dist/img/photo1.png rename to resources/views/themes/Omicron/dist/img/photo1.png diff --git a/public/themes/Omicron/dist/img/photo2.png b/resources/views/themes/Omicron/dist/img/photo2.png similarity index 100% rename from public/themes/Omicron/dist/img/photo2.png rename to resources/views/themes/Omicron/dist/img/photo2.png diff --git a/public/themes/Omicron/dist/img/photo3.jpg b/resources/views/themes/Omicron/dist/img/photo3.jpg similarity index 100% rename from public/themes/Omicron/dist/img/photo3.jpg rename to resources/views/themes/Omicron/dist/img/photo3.jpg diff --git a/public/themes/Omicron/dist/img/photo4.jpg b/resources/views/themes/Omicron/dist/img/photo4.jpg similarity index 100% rename from public/themes/Omicron/dist/img/photo4.jpg rename to resources/views/themes/Omicron/dist/img/photo4.jpg diff --git a/public/themes/Omicron/dist/img/user1-128x128.jpg b/resources/views/themes/Omicron/dist/img/user1-128x128.jpg similarity index 100% rename from public/themes/Omicron/dist/img/user1-128x128.jpg rename to resources/views/themes/Omicron/dist/img/user1-128x128.jpg diff --git a/public/themes/Omicron/dist/img/user2-160x160.jpg b/resources/views/themes/Omicron/dist/img/user2-160x160.jpg similarity index 100% rename from public/themes/Omicron/dist/img/user2-160x160.jpg rename to resources/views/themes/Omicron/dist/img/user2-160x160.jpg diff --git a/public/themes/Omicron/dist/img/user3-128x128.jpg b/resources/views/themes/Omicron/dist/img/user3-128x128.jpg similarity index 100% rename from public/themes/Omicron/dist/img/user3-128x128.jpg rename to resources/views/themes/Omicron/dist/img/user3-128x128.jpg diff --git a/public/themes/Omicron/dist/img/user4-128x128.jpg b/resources/views/themes/Omicron/dist/img/user4-128x128.jpg similarity index 100% rename from public/themes/Omicron/dist/img/user4-128x128.jpg rename to resources/views/themes/Omicron/dist/img/user4-128x128.jpg diff --git a/public/themes/Omicron/dist/img/user5-128x128.jpg b/resources/views/themes/Omicron/dist/img/user5-128x128.jpg similarity index 100% rename from public/themes/Omicron/dist/img/user5-128x128.jpg rename to resources/views/themes/Omicron/dist/img/user5-128x128.jpg diff --git a/public/themes/Omicron/dist/img/user6-128x128.jpg b/resources/views/themes/Omicron/dist/img/user6-128x128.jpg similarity index 100% rename from public/themes/Omicron/dist/img/user6-128x128.jpg rename to resources/views/themes/Omicron/dist/img/user6-128x128.jpg diff --git a/public/themes/Omicron/dist/img/user7-128x128.jpg b/resources/views/themes/Omicron/dist/img/user7-128x128.jpg similarity index 100% rename from public/themes/Omicron/dist/img/user7-128x128.jpg rename to resources/views/themes/Omicron/dist/img/user7-128x128.jpg diff --git a/public/themes/Omicron/dist/img/user8-128x128.jpg b/resources/views/themes/Omicron/dist/img/user8-128x128.jpg similarity index 100% rename from public/themes/Omicron/dist/img/user8-128x128.jpg rename to resources/views/themes/Omicron/dist/img/user8-128x128.jpg diff --git a/public/themes/Omicron/dist/js/app.js b/resources/views/themes/Omicron/dist/js/app.js similarity index 100% rename from public/themes/Omicron/dist/js/app.js rename to resources/views/themes/Omicron/dist/js/app.js diff --git a/public/themes/Omicron/dist/js/app.min.js b/resources/views/themes/Omicron/dist/js/app.min.js similarity index 100% rename from public/themes/Omicron/dist/js/app.min.js rename to resources/views/themes/Omicron/dist/js/app.min.js diff --git a/public/themes/Omicron/forum.tpl b/resources/views/themes/Omicron/forum.tpl similarity index 100% rename from public/themes/Omicron/forum.tpl rename to resources/views/themes/Omicron/forum.tpl diff --git a/public/themes/Omicron/forumpost.tpl b/resources/views/themes/Omicron/forumpost.tpl similarity index 100% rename from public/themes/Omicron/forumpost.tpl rename to resources/views/themes/Omicron/forumpost.tpl diff --git a/public/themes/Omicron/games.tpl b/resources/views/themes/Omicron/games.tpl similarity index 100% rename from public/themes/Omicron/games.tpl rename to resources/views/themes/Omicron/games.tpl diff --git a/public/themes/Omicron/headermenu.tpl b/resources/views/themes/Omicron/headermenu.tpl similarity index 100% rename from public/themes/Omicron/headermenu.tpl rename to resources/views/themes/Omicron/headermenu.tpl diff --git a/public/themes/Omicron/login.tpl b/resources/views/themes/Omicron/login.tpl similarity index 100% rename from public/themes/Omicron/login.tpl rename to resources/views/themes/Omicron/login.tpl diff --git a/public/themes/Omicron/mainmenu.tpl b/resources/views/themes/Omicron/mainmenu.tpl similarity index 100% rename from public/themes/Omicron/mainmenu.tpl rename to resources/views/themes/Omicron/mainmenu.tpl diff --git a/public/themes/Omicron/movies.tpl b/resources/views/themes/Omicron/movies.tpl similarity index 100% rename from public/themes/Omicron/movies.tpl rename to resources/views/themes/Omicron/movies.tpl diff --git a/public/themes/Omicron/music.tpl b/resources/views/themes/Omicron/music.tpl similarity index 100% rename from public/themes/Omicron/music.tpl rename to resources/views/themes/Omicron/music.tpl diff --git a/public/themes/Omicron/mymovies.tpl b/resources/views/themes/Omicron/mymovies.tpl similarity index 100% rename from public/themes/Omicron/mymovies.tpl rename to resources/views/themes/Omicron/mymovies.tpl diff --git a/public/themes/Omicron/myshows-add.tpl b/resources/views/themes/Omicron/myshows-add.tpl similarity index 100% rename from public/themes/Omicron/myshows-add.tpl rename to resources/views/themes/Omicron/myshows-add.tpl diff --git a/public/themes/Omicron/myshows.tpl b/resources/views/themes/Omicron/myshows.tpl similarity index 100% rename from public/themes/Omicron/myshows.tpl rename to resources/views/themes/Omicron/myshows.tpl diff --git a/public/themes/Omicron/nzbvortex.tpl b/resources/views/themes/Omicron/nzbvortex.tpl similarity index 100% rename from public/themes/Omicron/nzbvortex.tpl rename to resources/views/themes/Omicron/nzbvortex.tpl diff --git a/public/themes/Omicron/opensearch.tpl b/resources/views/themes/Omicron/opensearch.tpl similarity index 100% rename from public/themes/Omicron/opensearch.tpl rename to resources/views/themes/Omicron/opensearch.tpl diff --git a/public/themes/Omicron/pager.tpl b/resources/views/themes/Omicron/pager.tpl similarity index 100% rename from public/themes/Omicron/pager.tpl rename to resources/views/themes/Omicron/pager.tpl diff --git a/public/themes/Omicron/post_edit.tpl b/resources/views/themes/Omicron/post_edit.tpl similarity index 100% rename from public/themes/Omicron/post_edit.tpl rename to resources/views/themes/Omicron/post_edit.tpl diff --git a/public/themes/Omicron/profile.tpl b/resources/views/themes/Omicron/profile.tpl similarity index 100% rename from public/themes/Omicron/profile.tpl rename to resources/views/themes/Omicron/profile.tpl diff --git a/public/themes/Omicron/profileedit.tpl b/resources/views/themes/Omicron/profileedit.tpl similarity index 100% rename from public/themes/Omicron/profileedit.tpl rename to resources/views/themes/Omicron/profileedit.tpl diff --git a/public/themes/Omicron/register.tpl b/resources/views/themes/Omicron/register.tpl similarity index 100% rename from public/themes/Omicron/register.tpl rename to resources/views/themes/Omicron/register.tpl diff --git a/public/themes/Omicron/search.tpl b/resources/views/themes/Omicron/search.tpl similarity index 100% rename from public/themes/Omicron/search.tpl rename to resources/views/themes/Omicron/search.tpl diff --git a/public/themes/Omicron/searchraw.tpl b/resources/views/themes/Omicron/searchraw.tpl similarity index 100% rename from public/themes/Omicron/searchraw.tpl rename to resources/views/themes/Omicron/searchraw.tpl diff --git a/public/themes/Omicron/sitemap-xml.tpl b/resources/views/themes/Omicron/sitemap-xml.tpl similarity index 100% rename from public/themes/Omicron/sitemap-xml.tpl rename to resources/views/themes/Omicron/sitemap-xml.tpl diff --git a/public/themes/Omicron/sitemap.tpl b/resources/views/themes/Omicron/sitemap.tpl similarity index 100% rename from public/themes/Omicron/sitemap.tpl rename to resources/views/themes/Omicron/sitemap.tpl diff --git a/public/themes/Omicron/terms.tpl b/resources/views/themes/Omicron/terms.tpl similarity index 100% rename from public/themes/Omicron/terms.tpl rename to resources/views/themes/Omicron/terms.tpl diff --git a/public/themes/Omicron/viewanime.tpl b/resources/views/themes/Omicron/viewanime.tpl similarity index 100% rename from public/themes/Omicron/viewanime.tpl rename to resources/views/themes/Omicron/viewanime.tpl diff --git a/public/themes/Omicron/viewbook.tpl b/resources/views/themes/Omicron/viewbook.tpl similarity index 100% rename from public/themes/Omicron/viewbook.tpl rename to resources/views/themes/Omicron/viewbook.tpl diff --git a/public/themes/Omicron/viewmovie.tpl b/resources/views/themes/Omicron/viewmovie.tpl similarity index 100% rename from public/themes/Omicron/viewmovie.tpl rename to resources/views/themes/Omicron/viewmovie.tpl diff --git a/public/themes/Omicron/viewmusic.tpl b/resources/views/themes/Omicron/viewmusic.tpl similarity index 100% rename from public/themes/Omicron/viewmusic.tpl rename to resources/views/themes/Omicron/viewmusic.tpl diff --git a/public/themes/Omicron/viewnfo.tpl b/resources/views/themes/Omicron/viewnfo.tpl similarity index 100% rename from public/themes/Omicron/viewnfo.tpl rename to resources/views/themes/Omicron/viewnfo.tpl diff --git a/public/themes/Omicron/viewnzb.tpl b/resources/views/themes/Omicron/viewnzb.tpl similarity index 100% rename from public/themes/Omicron/viewnzb.tpl rename to resources/views/themes/Omicron/viewnzb.tpl diff --git a/public/themes/Omicron/viewqueue.tpl b/resources/views/themes/Omicron/viewqueue.tpl similarity index 100% rename from public/themes/Omicron/viewqueue.tpl rename to resources/views/themes/Omicron/viewqueue.tpl diff --git a/public/themes/Omicron/viewseries.tpl b/resources/views/themes/Omicron/viewseries.tpl similarity index 100% rename from public/themes/Omicron/viewseries.tpl rename to resources/views/themes/Omicron/viewseries.tpl diff --git a/public/themes/Omicron/viewxxx.tpl b/resources/views/themes/Omicron/viewxxx.tpl similarity index 100% rename from public/themes/Omicron/viewxxx.tpl rename to resources/views/themes/Omicron/viewxxx.tpl diff --git a/public/themes/Omicron/xxx.tpl b/resources/views/themes/Omicron/xxx.tpl similarity index 100% rename from public/themes/Omicron/xxx.tpl rename to resources/views/themes/Omicron/xxx.tpl diff --git a/public/themes/admin/adminmenu.tpl b/resources/views/themes/admin/adminmenu.tpl similarity index 100% rename from public/themes/admin/adminmenu.tpl rename to resources/views/themes/admin/adminmenu.tpl diff --git a/public/themes/admin/ajax_release-edit.tpl b/resources/views/themes/admin/ajax_release-edit.tpl similarity index 100% rename from public/themes/admin/ajax_release-edit.tpl rename to resources/views/themes/admin/ajax_release-edit.tpl diff --git a/public/themes/admin/anidb-edit.tpl b/resources/views/themes/admin/anidb-edit.tpl similarity index 100% rename from public/themes/admin/anidb-edit.tpl rename to resources/views/themes/admin/anidb-edit.tpl diff --git a/public/themes/admin/anidb-list.tpl b/resources/views/themes/admin/anidb-list.tpl similarity index 100% rename from public/themes/admin/anidb-list.tpl rename to resources/views/themes/admin/anidb-list.tpl diff --git a/public/themes/admin/anidb-remove.tpl b/resources/views/themes/admin/anidb-remove.tpl similarity index 100% rename from public/themes/admin/anidb-remove.tpl rename to resources/views/themes/admin/anidb-remove.tpl diff --git a/public/themes/admin/baseadminpage.tpl b/resources/views/themes/admin/baseadminpage.tpl similarity index 100% rename from public/themes/admin/baseadminpage.tpl rename to resources/views/themes/admin/baseadminpage.tpl diff --git a/public/themes/admin/binaryblacklist-edit.tpl b/resources/views/themes/admin/binaryblacklist-edit.tpl similarity index 100% rename from public/themes/admin/binaryblacklist-edit.tpl rename to resources/views/themes/admin/binaryblacklist-edit.tpl diff --git a/public/themes/admin/binaryblacklist-list.tpl b/resources/views/themes/admin/binaryblacklist-list.tpl similarity index 100% rename from public/themes/admin/binaryblacklist-list.tpl rename to resources/views/themes/admin/binaryblacklist-list.tpl diff --git a/public/themes/admin/book-edit.tpl b/resources/views/themes/admin/book-edit.tpl similarity index 100% rename from public/themes/admin/book-edit.tpl rename to resources/views/themes/admin/book-edit.tpl diff --git a/public/themes/admin/book-list.tpl b/resources/views/themes/admin/book-list.tpl similarity index 100% rename from public/themes/admin/book-list.tpl rename to resources/views/themes/admin/book-list.tpl diff --git a/public/themes/admin/category-edit.tpl b/resources/views/themes/admin/category-edit.tpl similarity index 100% rename from public/themes/admin/category-edit.tpl rename to resources/views/themes/admin/category-edit.tpl diff --git a/public/themes/admin/category-list.tpl b/resources/views/themes/admin/category-list.tpl similarity index 100% rename from public/themes/admin/category-list.tpl rename to resources/views/themes/admin/category-list.tpl diff --git a/public/themes/admin/category_regexes-edit.tpl b/resources/views/themes/admin/category_regexes-edit.tpl similarity index 100% rename from public/themes/admin/category_regexes-edit.tpl rename to resources/views/themes/admin/category_regexes-edit.tpl diff --git a/public/themes/admin/category_regexes-list.tpl b/resources/views/themes/admin/category_regexes-list.tpl similarity index 100% rename from public/themes/admin/category_regexes-list.tpl rename to resources/views/themes/admin/category_regexes-list.tpl diff --git a/public/themes/admin/collection_regexes-edit.tpl b/resources/views/themes/admin/collection_regexes-edit.tpl similarity index 100% rename from public/themes/admin/collection_regexes-edit.tpl rename to resources/views/themes/admin/collection_regexes-edit.tpl diff --git a/public/themes/admin/collection_regexes-list.tpl b/resources/views/themes/admin/collection_regexes-list.tpl similarity index 100% rename from public/themes/admin/collection_regexes-list.tpl rename to resources/views/themes/admin/collection_regexes-list.tpl diff --git a/public/themes/admin/collection_regexes-test.tpl b/resources/views/themes/admin/collection_regexes-test.tpl similarity index 100% rename from public/themes/admin/collection_regexes-test.tpl rename to resources/views/themes/admin/collection_regexes-test.tpl diff --git a/public/themes/admin/comments-list.tpl b/resources/views/themes/admin/comments-list.tpl similarity index 100% rename from public/themes/admin/comments-list.tpl rename to resources/views/themes/admin/comments-list.tpl diff --git a/public/themes/admin/console-edit.tpl b/resources/views/themes/admin/console-edit.tpl similarity index 100% rename from public/themes/admin/console-edit.tpl rename to resources/views/themes/admin/console-edit.tpl diff --git a/public/themes/admin/console-list.tpl b/resources/views/themes/admin/console-list.tpl similarity index 100% rename from public/themes/admin/console-list.tpl rename to resources/views/themes/admin/console-list.tpl diff --git a/public/themes/admin/content-add.tpl b/resources/views/themes/admin/content-add.tpl similarity index 100% rename from public/themes/admin/content-add.tpl rename to resources/views/themes/admin/content-add.tpl diff --git a/public/themes/admin/content-list.tpl b/resources/views/themes/admin/content-list.tpl similarity index 100% rename from public/themes/admin/content-list.tpl rename to resources/views/themes/admin/content-list.tpl diff --git a/public/themes/admin/failrel-list.tpl b/resources/views/themes/admin/failrel-list.tpl similarity index 100% rename from public/themes/admin/failrel-list.tpl rename to resources/views/themes/admin/failrel-list.tpl diff --git a/public/themes/admin/game-edit.tpl b/resources/views/themes/admin/game-edit.tpl similarity index 100% rename from public/themes/admin/game-edit.tpl rename to resources/views/themes/admin/game-edit.tpl diff --git a/public/themes/admin/game-list.tpl b/resources/views/themes/admin/game-list.tpl similarity index 100% rename from public/themes/admin/game-list.tpl rename to resources/views/themes/admin/game-list.tpl diff --git a/public/themes/admin/group-bulk.tpl b/resources/views/themes/admin/group-bulk.tpl similarity index 100% rename from public/themes/admin/group-bulk.tpl rename to resources/views/themes/admin/group-bulk.tpl diff --git a/public/themes/admin/group-edit.tpl b/resources/views/themes/admin/group-edit.tpl similarity index 100% rename from public/themes/admin/group-edit.tpl rename to resources/views/themes/admin/group-edit.tpl diff --git a/public/themes/admin/group-list.tpl b/resources/views/themes/admin/group-list.tpl similarity index 100% rename from public/themes/admin/group-list.tpl rename to resources/views/themes/admin/group-list.tpl diff --git a/public/themes/admin/index.tpl b/resources/views/themes/admin/index.tpl similarity index 100% rename from public/themes/admin/index.tpl rename to resources/views/themes/admin/index.tpl diff --git a/public/themes/admin/menu-edit.tpl b/resources/views/themes/admin/menu-edit.tpl similarity index 100% rename from public/themes/admin/menu-edit.tpl rename to resources/views/themes/admin/menu-edit.tpl diff --git a/public/themes/admin/menu-list.tpl b/resources/views/themes/admin/menu-list.tpl similarity index 100% rename from public/themes/admin/menu-list.tpl rename to resources/views/themes/admin/menu-list.tpl diff --git a/public/themes/admin/movie-add.tpl b/resources/views/themes/admin/movie-add.tpl similarity index 100% rename from public/themes/admin/movie-add.tpl rename to resources/views/themes/admin/movie-add.tpl diff --git a/public/themes/admin/movie-edit.tpl b/resources/views/themes/admin/movie-edit.tpl similarity index 100% rename from public/themes/admin/movie-edit.tpl rename to resources/views/themes/admin/movie-edit.tpl diff --git a/public/themes/admin/movie-list.tpl b/resources/views/themes/admin/movie-list.tpl similarity index 100% rename from public/themes/admin/movie-list.tpl rename to resources/views/themes/admin/movie-list.tpl diff --git a/public/themes/admin/music-edit.tpl b/resources/views/themes/admin/music-edit.tpl similarity index 100% rename from public/themes/admin/music-edit.tpl rename to resources/views/themes/admin/music-edit.tpl diff --git a/public/themes/admin/music-list.tpl b/resources/views/themes/admin/music-list.tpl similarity index 100% rename from public/themes/admin/music-list.tpl rename to resources/views/themes/admin/music-list.tpl diff --git a/public/themes/admin/nzb-export.tpl b/resources/views/themes/admin/nzb-export.tpl similarity index 100% rename from public/themes/admin/nzb-export.tpl rename to resources/views/themes/admin/nzb-export.tpl diff --git a/public/themes/admin/nzb-import.tpl b/resources/views/themes/admin/nzb-import.tpl similarity index 100% rename from public/themes/admin/nzb-import.tpl rename to resources/views/themes/admin/nzb-import.tpl diff --git a/public/themes/admin/posters-edit.tpl b/resources/views/themes/admin/posters-edit.tpl similarity index 100% rename from public/themes/admin/posters-edit.tpl rename to resources/views/themes/admin/posters-edit.tpl diff --git a/public/themes/admin/posters-list.tpl b/resources/views/themes/admin/posters-list.tpl similarity index 100% rename from public/themes/admin/posters-list.tpl rename to resources/views/themes/admin/posters-list.tpl diff --git a/public/themes/admin/predb.tpl b/resources/views/themes/admin/predb.tpl similarity index 100% rename from public/themes/admin/predb.tpl rename to resources/views/themes/admin/predb.tpl diff --git a/public/themes/admin/preview-list.tpl b/resources/views/themes/admin/preview-list.tpl similarity index 100% rename from public/themes/admin/preview-list.tpl rename to resources/views/themes/admin/preview-list.tpl diff --git a/public/themes/admin/release-edit.tpl b/resources/views/themes/admin/release-edit.tpl similarity index 100% rename from public/themes/admin/release-edit.tpl rename to resources/views/themes/admin/release-edit.tpl diff --git a/public/themes/admin/release-files.tpl b/resources/views/themes/admin/release-files.tpl similarity index 100% rename from public/themes/admin/release-files.tpl rename to resources/views/themes/admin/release-files.tpl diff --git a/public/themes/admin/release-list.tpl b/resources/views/themes/admin/release-list.tpl similarity index 100% rename from public/themes/admin/release-list.tpl rename to resources/views/themes/admin/release-list.tpl diff --git a/public/themes/admin/release_naming_regexes-edit.tpl b/resources/views/themes/admin/release_naming_regexes-edit.tpl similarity index 100% rename from public/themes/admin/release_naming_regexes-edit.tpl rename to resources/views/themes/admin/release_naming_regexes-edit.tpl diff --git a/public/themes/admin/release_naming_regexes-list.tpl b/resources/views/themes/admin/release_naming_regexes-list.tpl similarity index 100% rename from public/themes/admin/release_naming_regexes-list.tpl rename to resources/views/themes/admin/release_naming_regexes-list.tpl diff --git a/public/themes/admin/release_naming_regexes-test.tpl b/resources/views/themes/admin/release_naming_regexes-test.tpl similarity index 100% rename from public/themes/admin/release_naming_regexes-test.tpl rename to resources/views/themes/admin/release_naming_regexes-test.tpl diff --git a/public/themes/admin/role-edit.tpl b/resources/views/themes/admin/role-edit.tpl similarity index 100% rename from public/themes/admin/role-edit.tpl rename to resources/views/themes/admin/role-edit.tpl diff --git a/public/themes/admin/role-list.tpl b/resources/views/themes/admin/role-list.tpl similarity index 100% rename from public/themes/admin/role-list.tpl rename to resources/views/themes/admin/role-list.tpl diff --git a/public/themes/admin/sharing.tpl b/resources/views/themes/admin/sharing.tpl similarity index 100% rename from public/themes/admin/sharing.tpl rename to resources/views/themes/admin/sharing.tpl diff --git a/public/themes/admin/show-edit.tpl b/resources/views/themes/admin/show-edit.tpl similarity index 100% rename from public/themes/admin/show-edit.tpl rename to resources/views/themes/admin/show-edit.tpl diff --git a/public/themes/admin/show-list.tpl b/resources/views/themes/admin/show-list.tpl similarity index 100% rename from public/themes/admin/show-list.tpl rename to resources/views/themes/admin/show-list.tpl diff --git a/public/themes/admin/show-remove.tpl b/resources/views/themes/admin/show-remove.tpl similarity index 100% rename from public/themes/admin/show-remove.tpl rename to resources/views/themes/admin/show-remove.tpl diff --git a/public/themes/admin/site-debug.tpl b/resources/views/themes/admin/site-debug.tpl similarity index 100% rename from public/themes/admin/site-debug.tpl rename to resources/views/themes/admin/site-debug.tpl diff --git a/public/themes/admin/site-edit.tpl b/resources/views/themes/admin/site-edit.tpl similarity index 100% rename from public/themes/admin/site-edit.tpl rename to resources/views/themes/admin/site-edit.tpl diff --git a/public/themes/admin/site-stats.tpl b/resources/views/themes/admin/site-stats.tpl similarity index 100% rename from public/themes/admin/site-stats.tpl rename to resources/views/themes/admin/site-stats.tpl diff --git a/public/themes/admin/tmux-edit.tpl b/resources/views/themes/admin/tmux-edit.tpl similarity index 100% rename from public/themes/admin/tmux-edit.tpl rename to resources/views/themes/admin/tmux-edit.tpl diff --git a/public/themes/admin/user-edit.tpl b/resources/views/themes/admin/user-edit.tpl similarity index 100% rename from public/themes/admin/user-edit.tpl rename to resources/views/themes/admin/user-edit.tpl diff --git a/public/themes/admin/user-list.tpl b/resources/views/themes/admin/user-list.tpl similarity index 100% rename from public/themes/admin/user-list.tpl rename to resources/views/themes/admin/user-list.tpl diff --git a/public/themes/shared/apicomments.tpl b/resources/views/themes/shared/apicomments.tpl similarity index 100% rename from public/themes/shared/apicomments.tpl rename to resources/views/themes/shared/apicomments.tpl diff --git a/public/themes/shared/apidesc.tpl b/resources/views/themes/shared/apidesc.tpl similarity index 100% rename from public/themes/shared/apidesc.tpl rename to resources/views/themes/shared/apidesc.tpl diff --git a/public/themes/shared/apinfo.tpl b/resources/views/themes/shared/apinfo.tpl similarity index 100% rename from public/themes/shared/apinfo.tpl rename to resources/views/themes/shared/apinfo.tpl diff --git a/public/themes/shared/captcha.tpl b/resources/views/themes/shared/captcha.tpl similarity index 100% rename from public/themes/shared/captcha.tpl rename to resources/views/themes/shared/captcha.tpl diff --git a/public/themes/shared/css/admin.css b/resources/views/themes/shared/css/admin.css similarity index 100% rename from public/themes/shared/css/admin.css rename to resources/views/themes/shared/css/admin.css diff --git a/public/themes/shared/css/custom.css b/resources/views/themes/shared/css/custom.css similarity index 100% rename from public/themes/shared/css/custom.css rename to resources/views/themes/shared/css/custom.css diff --git a/public/themes/shared/css/install.css b/resources/views/themes/shared/css/install.css similarity index 100% rename from public/themes/shared/css/install.css rename to resources/views/themes/shared/css/install.css diff --git a/public/themes/shared/css/jquery.multiselect.css b/resources/views/themes/shared/css/jquery.multiselect.css similarity index 100% rename from public/themes/shared/css/jquery.multiselect.css rename to resources/views/themes/shared/css/jquery.multiselect.css diff --git a/public/themes/shared/css/jquery.pnotify.default.css b/resources/views/themes/shared/css/jquery.pnotify.default.css similarity index 100% rename from public/themes/shared/css/jquery.pnotify.default.css rename to resources/views/themes/shared/css/jquery.pnotify.default.css diff --git a/public/themes/shared/css/jquery.qtip.css b/resources/views/themes/shared/css/jquery.qtip.css similarity index 100% rename from public/themes/shared/css/jquery.qtip.css rename to resources/views/themes/shared/css/jquery.qtip.css diff --git a/public/themes/shared/css/normalize.css b/resources/views/themes/shared/css/normalize.css similarity index 100% rename from public/themes/shared/css/normalize.css rename to resources/views/themes/shared/css/normalize.css diff --git a/public/themes/shared/css/nprogress.css b/resources/views/themes/shared/css/nprogress.css similarity index 100% rename from public/themes/shared/css/nprogress.css rename to resources/views/themes/shared/css/nprogress.css diff --git a/public/themes/shared/css/style.css b/resources/views/themes/shared/css/style.css similarity index 100% rename from public/themes/shared/css/style.css rename to resources/views/themes/shared/css/style.css diff --git a/public/themes/shared/images/astra.png b/resources/views/themes/shared/images/astra.png similarity index 100% rename from public/themes/shared/images/astra.png rename to resources/views/themes/shared/images/astra.png diff --git a/public/themes/shared/images/banner.jpg b/resources/views/themes/shared/images/banner.jpg similarity index 100% rename from public/themes/shared/images/banner.jpg rename to resources/views/themes/shared/images/banner.jpg diff --git a/public/themes/shared/images/banner_nnplushigh.jpg b/resources/views/themes/shared/images/banner_nnplushigh.jpg similarity index 100% rename from public/themes/shared/images/banner_nnplushigh.jpg rename to resources/views/themes/shared/images/banner_nnplushigh.jpg diff --git a/public/themes/shared/images/body-bg.png b/resources/views/themes/shared/images/body-bg.png similarity index 100% rename from public/themes/shared/images/body-bg.png rename to resources/views/themes/shared/images/body-bg.png diff --git a/public/themes/shared/images/bullet.jpg b/resources/views/themes/shared/images/bullet.jpg similarity index 100% rename from public/themes/shared/images/bullet.jpg rename to resources/views/themes/shared/images/bullet.jpg diff --git a/public/themes/shared/images/bullet_hov.jpg b/resources/views/themes/shared/images/bullet_hov.jpg similarity index 100% rename from public/themes/shared/images/bullet_hov.jpg rename to resources/views/themes/shared/images/bullet_hov.jpg diff --git a/public/themes/shared/images/bullet_hov.png b/resources/views/themes/shared/images/bullet_hov.png similarity index 100% rename from public/themes/shared/images/bullet_hov.png rename to resources/views/themes/shared/images/bullet_hov.png diff --git a/public/themes/shared/images/clearlogo.png b/resources/views/themes/shared/images/clearlogo.png similarity index 100% rename from public/themes/shared/images/clearlogo.png rename to resources/views/themes/shared/images/clearlogo.png diff --git a/public/themes/shared/images/colorbox/border1-dark.png b/resources/views/themes/shared/images/colorbox/border1-dark.png similarity index 100% rename from public/themes/shared/images/colorbox/border1-dark.png rename to resources/views/themes/shared/images/colorbox/border1-dark.png diff --git a/public/themes/shared/images/colorbox/border1.png b/resources/views/themes/shared/images/colorbox/border1.png similarity index 100% rename from public/themes/shared/images/colorbox/border1.png rename to resources/views/themes/shared/images/colorbox/border1.png diff --git a/public/themes/shared/images/colorbox/border2-dark.png b/resources/views/themes/shared/images/colorbox/border2-dark.png similarity index 100% rename from public/themes/shared/images/colorbox/border2-dark.png rename to resources/views/themes/shared/images/colorbox/border2-dark.png diff --git a/public/themes/shared/images/colorbox/border2.png b/resources/views/themes/shared/images/colorbox/border2.png similarity index 100% rename from public/themes/shared/images/colorbox/border2.png rename to resources/views/themes/shared/images/colorbox/border2.png diff --git a/public/themes/shared/images/colorbox/controls-dark.png b/resources/views/themes/shared/images/colorbox/controls-dark.png similarity index 100% rename from public/themes/shared/images/colorbox/controls-dark.png rename to resources/views/themes/shared/images/colorbox/controls-dark.png diff --git a/public/themes/shared/images/colorbox/controls.png b/resources/views/themes/shared/images/colorbox/controls.png similarity index 100% rename from public/themes/shared/images/colorbox/controls.png rename to resources/views/themes/shared/images/colorbox/controls.png diff --git a/public/themes/shared/images/colorbox/controls2.png b/resources/views/themes/shared/images/colorbox/controls2.png similarity index 100% rename from public/themes/shared/images/colorbox/controls2.png rename to resources/views/themes/shared/images/colorbox/controls2.png diff --git a/public/themes/shared/images/colorbox/internet_explorer/borderBottomCenter.png b/resources/views/themes/shared/images/colorbox/internet_explorer/borderBottomCenter.png similarity index 100% rename from public/themes/shared/images/colorbox/internet_explorer/borderBottomCenter.png rename to resources/views/themes/shared/images/colorbox/internet_explorer/borderBottomCenter.png diff --git a/public/themes/shared/images/colorbox/internet_explorer/borderBottomLeft.png b/resources/views/themes/shared/images/colorbox/internet_explorer/borderBottomLeft.png similarity index 100% rename from public/themes/shared/images/colorbox/internet_explorer/borderBottomLeft.png rename to resources/views/themes/shared/images/colorbox/internet_explorer/borderBottomLeft.png diff --git a/public/themes/shared/images/colorbox/internet_explorer/borderBottomRight.png b/resources/views/themes/shared/images/colorbox/internet_explorer/borderBottomRight.png similarity index 100% rename from public/themes/shared/images/colorbox/internet_explorer/borderBottomRight.png rename to resources/views/themes/shared/images/colorbox/internet_explorer/borderBottomRight.png diff --git a/public/themes/shared/images/colorbox/internet_explorer/borderMiddleLeft.png b/resources/views/themes/shared/images/colorbox/internet_explorer/borderMiddleLeft.png similarity index 100% rename from public/themes/shared/images/colorbox/internet_explorer/borderMiddleLeft.png rename to resources/views/themes/shared/images/colorbox/internet_explorer/borderMiddleLeft.png diff --git a/public/themes/shared/images/colorbox/internet_explorer/borderMiddleRight.png b/resources/views/themes/shared/images/colorbox/internet_explorer/borderMiddleRight.png similarity index 100% rename from public/themes/shared/images/colorbox/internet_explorer/borderMiddleRight.png rename to resources/views/themes/shared/images/colorbox/internet_explorer/borderMiddleRight.png diff --git a/public/themes/shared/images/colorbox/internet_explorer/borderTopCenter.png b/resources/views/themes/shared/images/colorbox/internet_explorer/borderTopCenter.png similarity index 100% rename from public/themes/shared/images/colorbox/internet_explorer/borderTopCenter.png rename to resources/views/themes/shared/images/colorbox/internet_explorer/borderTopCenter.png diff --git a/public/themes/shared/images/colorbox/internet_explorer/borderTopLeft.png b/resources/views/themes/shared/images/colorbox/internet_explorer/borderTopLeft.png similarity index 100% rename from public/themes/shared/images/colorbox/internet_explorer/borderTopLeft.png rename to resources/views/themes/shared/images/colorbox/internet_explorer/borderTopLeft.png diff --git a/public/themes/shared/images/colorbox/internet_explorer/borderTopRight.png b/resources/views/themes/shared/images/colorbox/internet_explorer/borderTopRight.png similarity index 100% rename from public/themes/shared/images/colorbox/internet_explorer/borderTopRight.png rename to resources/views/themes/shared/images/colorbox/internet_explorer/borderTopRight.png diff --git a/public/themes/shared/images/colorbox/loading.gif b/resources/views/themes/shared/images/colorbox/loading.gif similarity index 100% rename from public/themes/shared/images/colorbox/loading.gif rename to resources/views/themes/shared/images/colorbox/loading.gif diff --git a/public/themes/shared/images/couch.png b/resources/views/themes/shared/images/couch.png similarity index 100% rename from public/themes/shared/images/couch.png rename to resources/views/themes/shared/images/couch.png diff --git a/public/themes/shared/images/couchpotato.png b/resources/views/themes/shared/images/couchpotato.png similarity index 100% rename from public/themes/shared/images/couchpotato.png rename to resources/views/themes/shared/images/couchpotato.png diff --git a/public/themes/shared/images/favicon.ico b/resources/views/themes/shared/images/favicon.ico similarity index 100% rename from public/themes/shared/images/favicon.ico rename to resources/views/themes/shared/images/favicon.ico diff --git a/public/themes/shared/images/fileicons/7z.png b/resources/views/themes/shared/images/fileicons/7z.png similarity index 100% rename from public/themes/shared/images/fileicons/7z.png rename to resources/views/themes/shared/images/fileicons/7z.png diff --git a/public/themes/shared/images/fileicons/ai.png b/resources/views/themes/shared/images/fileicons/ai.png similarity index 100% rename from public/themes/shared/images/fileicons/ai.png rename to resources/views/themes/shared/images/fileicons/ai.png diff --git a/public/themes/shared/images/fileicons/aiff.png b/resources/views/themes/shared/images/fileicons/aiff.png similarity index 100% rename from public/themes/shared/images/fileicons/aiff.png rename to resources/views/themes/shared/images/fileicons/aiff.png diff --git a/public/themes/shared/images/fileicons/asc.png b/resources/views/themes/shared/images/fileicons/asc.png similarity index 100% rename from public/themes/shared/images/fileicons/asc.png rename to resources/views/themes/shared/images/fileicons/asc.png diff --git a/public/themes/shared/images/fileicons/audio.png b/resources/views/themes/shared/images/fileicons/audio.png similarity index 100% rename from public/themes/shared/images/fileicons/audio.png rename to resources/views/themes/shared/images/fileicons/audio.png diff --git a/public/themes/shared/images/fileicons/avi.png b/resources/views/themes/shared/images/fileicons/avi.png similarity index 100% rename from public/themes/shared/images/fileicons/avi.png rename to resources/views/themes/shared/images/fileicons/avi.png diff --git a/public/themes/shared/images/fileicons/bin.png b/resources/views/themes/shared/images/fileicons/bin.png similarity index 100% rename from public/themes/shared/images/fileicons/bin.png rename to resources/views/themes/shared/images/fileicons/bin.png diff --git a/public/themes/shared/images/fileicons/bz2.png b/resources/views/themes/shared/images/fileicons/bz2.png similarity index 100% rename from public/themes/shared/images/fileicons/bz2.png rename to resources/views/themes/shared/images/fileicons/bz2.png diff --git a/public/themes/shared/images/fileicons/c.png b/resources/views/themes/shared/images/fileicons/c.png similarity index 100% rename from public/themes/shared/images/fileicons/c.png rename to resources/views/themes/shared/images/fileicons/c.png diff --git a/public/themes/shared/images/fileicons/cfc.png b/resources/views/themes/shared/images/fileicons/cfc.png similarity index 100% rename from public/themes/shared/images/fileicons/cfc.png rename to resources/views/themes/shared/images/fileicons/cfc.png diff --git a/public/themes/shared/images/fileicons/cfm.png b/resources/views/themes/shared/images/fileicons/cfm.png similarity index 100% rename from public/themes/shared/images/fileicons/cfm.png rename to resources/views/themes/shared/images/fileicons/cfm.png diff --git a/public/themes/shared/images/fileicons/chm.png b/resources/views/themes/shared/images/fileicons/chm.png similarity index 100% rename from public/themes/shared/images/fileicons/chm.png rename to resources/views/themes/shared/images/fileicons/chm.png diff --git a/public/themes/shared/images/fileicons/class.png b/resources/views/themes/shared/images/fileicons/class.png similarity index 100% rename from public/themes/shared/images/fileicons/class.png rename to resources/views/themes/shared/images/fileicons/class.png diff --git a/public/themes/shared/images/fileicons/conf.png b/resources/views/themes/shared/images/fileicons/conf.png similarity index 100% rename from public/themes/shared/images/fileicons/conf.png rename to resources/views/themes/shared/images/fileicons/conf.png diff --git a/public/themes/shared/images/fileicons/cpp.png b/resources/views/themes/shared/images/fileicons/cpp.png similarity index 100% rename from public/themes/shared/images/fileicons/cpp.png rename to resources/views/themes/shared/images/fileicons/cpp.png diff --git a/public/themes/shared/images/fileicons/cs.png b/resources/views/themes/shared/images/fileicons/cs.png similarity index 100% rename from public/themes/shared/images/fileicons/cs.png rename to resources/views/themes/shared/images/fileicons/cs.png diff --git a/public/themes/shared/images/fileicons/css.png b/resources/views/themes/shared/images/fileicons/css.png similarity index 100% rename from public/themes/shared/images/fileicons/css.png rename to resources/views/themes/shared/images/fileicons/css.png diff --git a/public/themes/shared/images/fileicons/csv.png b/resources/views/themes/shared/images/fileicons/csv.png similarity index 100% rename from public/themes/shared/images/fileicons/csv.png rename to resources/views/themes/shared/images/fileicons/csv.png diff --git a/public/themes/shared/images/fileicons/deb.png b/resources/views/themes/shared/images/fileicons/deb.png similarity index 100% rename from public/themes/shared/images/fileicons/deb.png rename to resources/views/themes/shared/images/fileicons/deb.png diff --git a/public/themes/shared/images/fileicons/divx.png b/resources/views/themes/shared/images/fileicons/divx.png similarity index 100% rename from public/themes/shared/images/fileicons/divx.png rename to resources/views/themes/shared/images/fileicons/divx.png diff --git a/public/themes/shared/images/fileicons/doc.png b/resources/views/themes/shared/images/fileicons/doc.png similarity index 100% rename from public/themes/shared/images/fileicons/doc.png rename to resources/views/themes/shared/images/fileicons/doc.png diff --git a/public/themes/shared/images/fileicons/dot.png b/resources/views/themes/shared/images/fileicons/dot.png similarity index 100% rename from public/themes/shared/images/fileicons/dot.png rename to resources/views/themes/shared/images/fileicons/dot.png diff --git a/public/themes/shared/images/fileicons/eml.png b/resources/views/themes/shared/images/fileicons/eml.png similarity index 100% rename from public/themes/shared/images/fileicons/eml.png rename to resources/views/themes/shared/images/fileicons/eml.png diff --git a/public/themes/shared/images/fileicons/enc.png b/resources/views/themes/shared/images/fileicons/enc.png similarity index 100% rename from public/themes/shared/images/fileicons/enc.png rename to resources/views/themes/shared/images/fileicons/enc.png diff --git a/public/themes/shared/images/fileicons/file.png b/resources/views/themes/shared/images/fileicons/file.png similarity index 100% rename from public/themes/shared/images/fileicons/file.png rename to resources/views/themes/shared/images/fileicons/file.png diff --git a/public/themes/shared/images/fileicons/folder.png b/resources/views/themes/shared/images/fileicons/folder.png similarity index 100% rename from public/themes/shared/images/fileicons/folder.png rename to resources/views/themes/shared/images/fileicons/folder.png diff --git a/public/themes/shared/images/fileicons/gif.png b/resources/views/themes/shared/images/fileicons/gif.png similarity index 100% rename from public/themes/shared/images/fileicons/gif.png rename to resources/views/themes/shared/images/fileicons/gif.png diff --git a/public/themes/shared/images/fileicons/gz.png b/resources/views/themes/shared/images/fileicons/gz.png similarity index 100% rename from public/themes/shared/images/fileicons/gz.png rename to resources/views/themes/shared/images/fileicons/gz.png diff --git a/public/themes/shared/images/fileicons/hlp.png b/resources/views/themes/shared/images/fileicons/hlp.png similarity index 100% rename from public/themes/shared/images/fileicons/hlp.png rename to resources/views/themes/shared/images/fileicons/hlp.png diff --git a/public/themes/shared/images/fileicons/htm.png b/resources/views/themes/shared/images/fileicons/htm.png similarity index 100% rename from public/themes/shared/images/fileicons/htm.png rename to resources/views/themes/shared/images/fileicons/htm.png diff --git a/public/themes/shared/images/fileicons/html.png b/resources/views/themes/shared/images/fileicons/html.png similarity index 100% rename from public/themes/shared/images/fileicons/html.png rename to resources/views/themes/shared/images/fileicons/html.png diff --git a/public/themes/shared/images/fileicons/image.png b/resources/views/themes/shared/images/fileicons/image.png similarity index 100% rename from public/themes/shared/images/fileicons/image.png rename to resources/views/themes/shared/images/fileicons/image.png diff --git a/public/themes/shared/images/fileicons/iso.png b/resources/views/themes/shared/images/fileicons/iso.png similarity index 100% rename from public/themes/shared/images/fileicons/iso.png rename to resources/views/themes/shared/images/fileicons/iso.png diff --git a/public/themes/shared/images/fileicons/jar.png b/resources/views/themes/shared/images/fileicons/jar.png similarity index 100% rename from public/themes/shared/images/fileicons/jar.png rename to resources/views/themes/shared/images/fileicons/jar.png diff --git a/public/themes/shared/images/fileicons/java.png b/resources/views/themes/shared/images/fileicons/java.png similarity index 100% rename from public/themes/shared/images/fileicons/java.png rename to resources/views/themes/shared/images/fileicons/java.png diff --git a/public/themes/shared/images/fileicons/jpeg.png b/resources/views/themes/shared/images/fileicons/jpeg.png similarity index 100% rename from public/themes/shared/images/fileicons/jpeg.png rename to resources/views/themes/shared/images/fileicons/jpeg.png diff --git a/public/themes/shared/images/fileicons/jpg.png b/resources/views/themes/shared/images/fileicons/jpg.png similarity index 100% rename from public/themes/shared/images/fileicons/jpg.png rename to resources/views/themes/shared/images/fileicons/jpg.png diff --git a/public/themes/shared/images/fileicons/js.png b/resources/views/themes/shared/images/fileicons/js.png similarity index 100% rename from public/themes/shared/images/fileicons/js.png rename to resources/views/themes/shared/images/fileicons/js.png diff --git a/public/themes/shared/images/fileicons/lua.png b/resources/views/themes/shared/images/fileicons/lua.png similarity index 100% rename from public/themes/shared/images/fileicons/lua.png rename to resources/views/themes/shared/images/fileicons/lua.png diff --git a/public/themes/shared/images/fileicons/m.png b/resources/views/themes/shared/images/fileicons/m.png similarity index 100% rename from public/themes/shared/images/fileicons/m.png rename to resources/views/themes/shared/images/fileicons/m.png diff --git a/public/themes/shared/images/fileicons/m4v.png b/resources/views/themes/shared/images/fileicons/m4v.png similarity index 100% rename from public/themes/shared/images/fileicons/m4v.png rename to resources/views/themes/shared/images/fileicons/m4v.png diff --git a/public/themes/shared/images/fileicons/mkv.png b/resources/views/themes/shared/images/fileicons/mkv.png similarity index 100% rename from public/themes/shared/images/fileicons/mkv.png rename to resources/views/themes/shared/images/fileicons/mkv.png diff --git a/public/themes/shared/images/fileicons/mm.png b/resources/views/themes/shared/images/fileicons/mm.png similarity index 100% rename from public/themes/shared/images/fileicons/mm.png rename to resources/views/themes/shared/images/fileicons/mm.png diff --git a/public/themes/shared/images/fileicons/mov.png b/resources/views/themes/shared/images/fileicons/mov.png similarity index 100% rename from public/themes/shared/images/fileicons/mov.png rename to resources/views/themes/shared/images/fileicons/mov.png diff --git a/public/themes/shared/images/fileicons/mp3.png b/resources/views/themes/shared/images/fileicons/mp3.png similarity index 100% rename from public/themes/shared/images/fileicons/mp3.png rename to resources/views/themes/shared/images/fileicons/mp3.png diff --git a/public/themes/shared/images/fileicons/mpg.png b/resources/views/themes/shared/images/fileicons/mpg.png similarity index 100% rename from public/themes/shared/images/fileicons/mpg.png rename to resources/views/themes/shared/images/fileicons/mpg.png diff --git a/public/themes/shared/images/fileicons/nfo.png b/resources/views/themes/shared/images/fileicons/nfo.png similarity index 100% rename from public/themes/shared/images/fileicons/nfo.png rename to resources/views/themes/shared/images/fileicons/nfo.png diff --git a/public/themes/shared/images/fileicons/nzb.png b/resources/views/themes/shared/images/fileicons/nzb.png similarity index 100% rename from public/themes/shared/images/fileicons/nzb.png rename to resources/views/themes/shared/images/fileicons/nzb.png diff --git a/public/themes/shared/images/fileicons/odc.png b/resources/views/themes/shared/images/fileicons/odc.png similarity index 100% rename from public/themes/shared/images/fileicons/odc.png rename to resources/views/themes/shared/images/fileicons/odc.png diff --git a/public/themes/shared/images/fileicons/odf.png b/resources/views/themes/shared/images/fileicons/odf.png similarity index 100% rename from public/themes/shared/images/fileicons/odf.png rename to resources/views/themes/shared/images/fileicons/odf.png diff --git a/public/themes/shared/images/fileicons/odg.png b/resources/views/themes/shared/images/fileicons/odg.png similarity index 100% rename from public/themes/shared/images/fileicons/odg.png rename to resources/views/themes/shared/images/fileicons/odg.png diff --git a/public/themes/shared/images/fileicons/odi.png b/resources/views/themes/shared/images/fileicons/odi.png similarity index 100% rename from public/themes/shared/images/fileicons/odi.png rename to resources/views/themes/shared/images/fileicons/odi.png diff --git a/public/themes/shared/images/fileicons/odp.png b/resources/views/themes/shared/images/fileicons/odp.png similarity index 100% rename from public/themes/shared/images/fileicons/odp.png rename to resources/views/themes/shared/images/fileicons/odp.png diff --git a/public/themes/shared/images/fileicons/ods.png b/resources/views/themes/shared/images/fileicons/ods.png similarity index 100% rename from public/themes/shared/images/fileicons/ods.png rename to resources/views/themes/shared/images/fileicons/ods.png diff --git a/public/themes/shared/images/fileicons/odt.png b/resources/views/themes/shared/images/fileicons/odt.png similarity index 100% rename from public/themes/shared/images/fileicons/odt.png rename to resources/views/themes/shared/images/fileicons/odt.png diff --git a/public/themes/shared/images/fileicons/ogg.png b/resources/views/themes/shared/images/fileicons/ogg.png similarity index 100% rename from public/themes/shared/images/fileicons/ogg.png rename to resources/views/themes/shared/images/fileicons/ogg.png diff --git a/public/themes/shared/images/fileicons/par2.png b/resources/views/themes/shared/images/fileicons/par2.png similarity index 100% rename from public/themes/shared/images/fileicons/par2.png rename to resources/views/themes/shared/images/fileicons/par2.png diff --git a/public/themes/shared/images/fileicons/pdf.png b/resources/views/themes/shared/images/fileicons/pdf.png similarity index 100% rename from public/themes/shared/images/fileicons/pdf.png rename to resources/views/themes/shared/images/fileicons/pdf.png diff --git a/public/themes/shared/images/fileicons/pgp.png b/resources/views/themes/shared/images/fileicons/pgp.png similarity index 100% rename from public/themes/shared/images/fileicons/pgp.png rename to resources/views/themes/shared/images/fileicons/pgp.png diff --git a/public/themes/shared/images/fileicons/php.png b/resources/views/themes/shared/images/fileicons/php.png similarity index 100% rename from public/themes/shared/images/fileicons/php.png rename to resources/views/themes/shared/images/fileicons/php.png diff --git a/public/themes/shared/images/fileicons/pl.png b/resources/views/themes/shared/images/fileicons/pl.png similarity index 100% rename from public/themes/shared/images/fileicons/pl.png rename to resources/views/themes/shared/images/fileicons/pl.png diff --git a/public/themes/shared/images/fileicons/png.png b/resources/views/themes/shared/images/fileicons/png.png similarity index 100% rename from public/themes/shared/images/fileicons/png.png rename to resources/views/themes/shared/images/fileicons/png.png diff --git a/public/themes/shared/images/fileicons/ppt.png b/resources/views/themes/shared/images/fileicons/ppt.png similarity index 100% rename from public/themes/shared/images/fileicons/ppt.png rename to resources/views/themes/shared/images/fileicons/ppt.png diff --git a/public/themes/shared/images/fileicons/ps.png b/resources/views/themes/shared/images/fileicons/ps.png similarity index 100% rename from public/themes/shared/images/fileicons/ps.png rename to resources/views/themes/shared/images/fileicons/ps.png diff --git a/public/themes/shared/images/fileicons/py.png b/resources/views/themes/shared/images/fileicons/py.png similarity index 100% rename from public/themes/shared/images/fileicons/py.png rename to resources/views/themes/shared/images/fileicons/py.png diff --git a/public/themes/shared/images/fileicons/ram.png b/resources/views/themes/shared/images/fileicons/ram.png similarity index 100% rename from public/themes/shared/images/fileicons/ram.png rename to resources/views/themes/shared/images/fileicons/ram.png diff --git a/public/themes/shared/images/fileicons/rar.png b/resources/views/themes/shared/images/fileicons/rar.png similarity index 100% rename from public/themes/shared/images/fileicons/rar.png rename to resources/views/themes/shared/images/fileicons/rar.png diff --git a/public/themes/shared/images/fileicons/rb.png b/resources/views/themes/shared/images/fileicons/rb.png similarity index 100% rename from public/themes/shared/images/fileicons/rb.png rename to resources/views/themes/shared/images/fileicons/rb.png diff --git a/public/themes/shared/images/fileicons/rm.png b/resources/views/themes/shared/images/fileicons/rm.png similarity index 100% rename from public/themes/shared/images/fileicons/rm.png rename to resources/views/themes/shared/images/fileicons/rm.png diff --git a/public/themes/shared/images/fileicons/rpm.png b/resources/views/themes/shared/images/fileicons/rpm.png similarity index 100% rename from public/themes/shared/images/fileicons/rpm.png rename to resources/views/themes/shared/images/fileicons/rpm.png diff --git a/public/themes/shared/images/fileicons/rtf.png b/resources/views/themes/shared/images/fileicons/rtf.png similarity index 100% rename from public/themes/shared/images/fileicons/rtf.png rename to resources/views/themes/shared/images/fileicons/rtf.png diff --git a/public/themes/shared/images/fileicons/sfv.png b/resources/views/themes/shared/images/fileicons/sfv.png similarity index 100% rename from public/themes/shared/images/fileicons/sfv.png rename to resources/views/themes/shared/images/fileicons/sfv.png diff --git a/public/themes/shared/images/fileicons/sig.png b/resources/views/themes/shared/images/fileicons/sig.png similarity index 100% rename from public/themes/shared/images/fileicons/sig.png rename to resources/views/themes/shared/images/fileicons/sig.png diff --git a/public/themes/shared/images/fileicons/sql.png b/resources/views/themes/shared/images/fileicons/sql.png similarity index 100% rename from public/themes/shared/images/fileicons/sql.png rename to resources/views/themes/shared/images/fileicons/sql.png diff --git a/public/themes/shared/images/fileicons/srr.png b/resources/views/themes/shared/images/fileicons/srr.png similarity index 100% rename from public/themes/shared/images/fileicons/srr.png rename to resources/views/themes/shared/images/fileicons/srr.png diff --git a/public/themes/shared/images/fileicons/srs.png b/resources/views/themes/shared/images/fileicons/srs.png similarity index 100% rename from public/themes/shared/images/fileicons/srs.png rename to resources/views/themes/shared/images/fileicons/srs.png diff --git a/public/themes/shared/images/fileicons/srt.png b/resources/views/themes/shared/images/fileicons/srt.png similarity index 100% rename from public/themes/shared/images/fileicons/srt.png rename to resources/views/themes/shared/images/fileicons/srt.png diff --git a/public/themes/shared/images/fileicons/swf.png b/resources/views/themes/shared/images/fileicons/swf.png similarity index 100% rename from public/themes/shared/images/fileicons/swf.png rename to resources/views/themes/shared/images/fileicons/swf.png diff --git a/public/themes/shared/images/fileicons/sxc.png b/resources/views/themes/shared/images/fileicons/sxc.png similarity index 100% rename from public/themes/shared/images/fileicons/sxc.png rename to resources/views/themes/shared/images/fileicons/sxc.png diff --git a/public/themes/shared/images/fileicons/sxd.png b/resources/views/themes/shared/images/fileicons/sxd.png similarity index 100% rename from public/themes/shared/images/fileicons/sxd.png rename to resources/views/themes/shared/images/fileicons/sxd.png diff --git a/public/themes/shared/images/fileicons/sxi.png b/resources/views/themes/shared/images/fileicons/sxi.png similarity index 100% rename from public/themes/shared/images/fileicons/sxi.png rename to resources/views/themes/shared/images/fileicons/sxi.png diff --git a/public/themes/shared/images/fileicons/sxw.png b/resources/views/themes/shared/images/fileicons/sxw.png similarity index 100% rename from public/themes/shared/images/fileicons/sxw.png rename to resources/views/themes/shared/images/fileicons/sxw.png diff --git a/public/themes/shared/images/fileicons/tar.png b/resources/views/themes/shared/images/fileicons/tar.png similarity index 100% rename from public/themes/shared/images/fileicons/tar.png rename to resources/views/themes/shared/images/fileicons/tar.png diff --git a/public/themes/shared/images/fileicons/tex.png b/resources/views/themes/shared/images/fileicons/tex.png similarity index 100% rename from public/themes/shared/images/fileicons/tex.png rename to resources/views/themes/shared/images/fileicons/tex.png diff --git a/public/themes/shared/images/fileicons/tgz.png b/resources/views/themes/shared/images/fileicons/tgz.png similarity index 100% rename from public/themes/shared/images/fileicons/tgz.png rename to resources/views/themes/shared/images/fileicons/tgz.png diff --git a/public/themes/shared/images/fileicons/txt.png b/resources/views/themes/shared/images/fileicons/txt.png similarity index 100% rename from public/themes/shared/images/fileicons/txt.png rename to resources/views/themes/shared/images/fileicons/txt.png diff --git a/public/themes/shared/images/fileicons/url.png b/resources/views/themes/shared/images/fileicons/url.png similarity index 100% rename from public/themes/shared/images/fileicons/url.png rename to resources/views/themes/shared/images/fileicons/url.png diff --git a/public/themes/shared/images/fileicons/vcf.png b/resources/views/themes/shared/images/fileicons/vcf.png similarity index 100% rename from public/themes/shared/images/fileicons/vcf.png rename to resources/views/themes/shared/images/fileicons/vcf.png diff --git a/public/themes/shared/images/fileicons/video.png b/resources/views/themes/shared/images/fileicons/video.png similarity index 100% rename from public/themes/shared/images/fileicons/video.png rename to resources/views/themes/shared/images/fileicons/video.png diff --git a/public/themes/shared/images/fileicons/vsd.png b/resources/views/themes/shared/images/fileicons/vsd.png similarity index 100% rename from public/themes/shared/images/fileicons/vsd.png rename to resources/views/themes/shared/images/fileicons/vsd.png diff --git a/public/themes/shared/images/fileicons/wav.png b/resources/views/themes/shared/images/fileicons/wav.png similarity index 100% rename from public/themes/shared/images/fileicons/wav.png rename to resources/views/themes/shared/images/fileicons/wav.png diff --git a/public/themes/shared/images/fileicons/wma.png b/resources/views/themes/shared/images/fileicons/wma.png similarity index 100% rename from public/themes/shared/images/fileicons/wma.png rename to resources/views/themes/shared/images/fileicons/wma.png diff --git a/public/themes/shared/images/fileicons/wmv.png b/resources/views/themes/shared/images/fileicons/wmv.png similarity index 100% rename from public/themes/shared/images/fileicons/wmv.png rename to resources/views/themes/shared/images/fileicons/wmv.png diff --git a/public/themes/shared/images/fileicons/xls.png b/resources/views/themes/shared/images/fileicons/xls.png similarity index 100% rename from public/themes/shared/images/fileicons/xls.png rename to resources/views/themes/shared/images/fileicons/xls.png diff --git a/public/themes/shared/images/fileicons/xml.png b/resources/views/themes/shared/images/fileicons/xml.png similarity index 100% rename from public/themes/shared/images/fileicons/xml.png rename to resources/views/themes/shared/images/fileicons/xml.png diff --git a/public/themes/shared/images/fileicons/xpi.png b/resources/views/themes/shared/images/fileicons/xpi.png similarity index 100% rename from public/themes/shared/images/fileicons/xpi.png rename to resources/views/themes/shared/images/fileicons/xpi.png diff --git a/public/themes/shared/images/fileicons/xvid.png b/resources/views/themes/shared/images/fileicons/xvid.png similarity index 100% rename from public/themes/shared/images/fileicons/xvid.png rename to resources/views/themes/shared/images/fileicons/xvid.png diff --git a/public/themes/shared/images/fileicons/zip.png b/resources/views/themes/shared/images/fileicons/zip.png similarity index 100% rename from public/themes/shared/images/fileicons/zip.png rename to resources/views/themes/shared/images/fileicons/zip.png diff --git a/public/themes/shared/images/flags/cn.png b/resources/views/themes/shared/images/flags/cn.png similarity index 100% rename from public/themes/shared/images/flags/cn.png rename to resources/views/themes/shared/images/flags/cn.png diff --git a/public/themes/shared/images/flags/cz.png b/resources/views/themes/shared/images/flags/cz.png similarity index 100% rename from public/themes/shared/images/flags/cz.png rename to resources/views/themes/shared/images/flags/cz.png diff --git a/public/themes/shared/images/flags/de.png b/resources/views/themes/shared/images/flags/de.png similarity index 100% rename from public/themes/shared/images/flags/de.png rename to resources/views/themes/shared/images/flags/de.png diff --git a/public/themes/shared/images/flags/dk.png b/resources/views/themes/shared/images/flags/dk.png similarity index 100% rename from public/themes/shared/images/flags/dk.png rename to resources/views/themes/shared/images/flags/dk.png diff --git a/public/themes/shared/images/flags/en.png b/resources/views/themes/shared/images/flags/en.png similarity index 100% rename from public/themes/shared/images/flags/en.png rename to resources/views/themes/shared/images/flags/en.png diff --git a/public/themes/shared/images/flags/es.png b/resources/views/themes/shared/images/flags/es.png similarity index 100% rename from public/themes/shared/images/flags/es.png rename to resources/views/themes/shared/images/flags/es.png diff --git a/public/themes/shared/images/flags/fi.png b/resources/views/themes/shared/images/flags/fi.png similarity index 100% rename from public/themes/shared/images/flags/fi.png rename to resources/views/themes/shared/images/flags/fi.png diff --git a/public/themes/shared/images/flags/fr.png b/resources/views/themes/shared/images/flags/fr.png similarity index 100% rename from public/themes/shared/images/flags/fr.png rename to resources/views/themes/shared/images/flags/fr.png diff --git a/public/themes/shared/images/flags/gb.png b/resources/views/themes/shared/images/flags/gb.png similarity index 100% rename from public/themes/shared/images/flags/gb.png rename to resources/views/themes/shared/images/flags/gb.png diff --git a/public/themes/shared/images/flags/gr.png b/resources/views/themes/shared/images/flags/gr.png similarity index 100% rename from public/themes/shared/images/flags/gr.png rename to resources/views/themes/shared/images/flags/gr.png diff --git a/public/themes/shared/images/flags/hu.png b/resources/views/themes/shared/images/flags/hu.png similarity index 100% rename from public/themes/shared/images/flags/hu.png rename to resources/views/themes/shared/images/flags/hu.png diff --git a/public/themes/shared/images/flags/il.png b/resources/views/themes/shared/images/flags/il.png similarity index 100% rename from public/themes/shared/images/flags/il.png rename to resources/views/themes/shared/images/flags/il.png diff --git a/public/themes/shared/images/flags/in.png b/resources/views/themes/shared/images/flags/in.png similarity index 100% rename from public/themes/shared/images/flags/in.png rename to resources/views/themes/shared/images/flags/in.png diff --git a/public/themes/shared/images/flags/it.png b/resources/views/themes/shared/images/flags/it.png similarity index 100% rename from public/themes/shared/images/flags/it.png rename to resources/views/themes/shared/images/flags/it.png diff --git a/public/themes/shared/images/flags/jp.png b/resources/views/themes/shared/images/flags/jp.png similarity index 100% rename from public/themes/shared/images/flags/jp.png rename to resources/views/themes/shared/images/flags/jp.png diff --git a/public/themes/shared/images/flags/kr.png b/resources/views/themes/shared/images/flags/kr.png similarity index 100% rename from public/themes/shared/images/flags/kr.png rename to resources/views/themes/shared/images/flags/kr.png diff --git a/public/themes/shared/images/flags/nl.png b/resources/views/themes/shared/images/flags/nl.png similarity index 100% rename from public/themes/shared/images/flags/nl.png rename to resources/views/themes/shared/images/flags/nl.png diff --git a/public/themes/shared/images/flags/no.png b/resources/views/themes/shared/images/flags/no.png similarity index 100% rename from public/themes/shared/images/flags/no.png rename to resources/views/themes/shared/images/flags/no.png diff --git a/public/themes/shared/images/flags/ph.png b/resources/views/themes/shared/images/flags/ph.png similarity index 100% rename from public/themes/shared/images/flags/ph.png rename to resources/views/themes/shared/images/flags/ph.png diff --git a/public/themes/shared/images/flags/pk.png b/resources/views/themes/shared/images/flags/pk.png similarity index 100% rename from public/themes/shared/images/flags/pk.png rename to resources/views/themes/shared/images/flags/pk.png diff --git a/public/themes/shared/images/flags/pl.png b/resources/views/themes/shared/images/flags/pl.png similarity index 100% rename from public/themes/shared/images/flags/pl.png rename to resources/views/themes/shared/images/flags/pl.png diff --git a/public/themes/shared/images/flags/pt.png b/resources/views/themes/shared/images/flags/pt.png similarity index 100% rename from public/themes/shared/images/flags/pt.png rename to resources/views/themes/shared/images/flags/pt.png diff --git a/public/themes/shared/images/flags/ro.png b/resources/views/themes/shared/images/flags/ro.png similarity index 100% rename from public/themes/shared/images/flags/ro.png rename to resources/views/themes/shared/images/flags/ro.png diff --git a/public/themes/shared/images/flags/ru.png b/resources/views/themes/shared/images/flags/ru.png similarity index 100% rename from public/themes/shared/images/flags/ru.png rename to resources/views/themes/shared/images/flags/ru.png diff --git a/public/themes/shared/images/flags/se.png b/resources/views/themes/shared/images/flags/se.png similarity index 100% rename from public/themes/shared/images/flags/se.png rename to resources/views/themes/shared/images/flags/se.png diff --git a/public/themes/shared/images/flags/th.png b/resources/views/themes/shared/images/flags/th.png similarity index 100% rename from public/themes/shared/images/flags/th.png rename to resources/views/themes/shared/images/flags/th.png diff --git a/public/themes/shared/images/flags/tr.png b/resources/views/themes/shared/images/flags/tr.png similarity index 100% rename from public/themes/shared/images/flags/tr.png rename to resources/views/themes/shared/images/flags/tr.png diff --git a/public/themes/shared/images/flags/tw.png b/resources/views/themes/shared/images/flags/tw.png similarity index 100% rename from public/themes/shared/images/flags/tw.png rename to resources/views/themes/shared/images/flags/tw.png diff --git a/public/themes/shared/images/flags/us.png b/resources/views/themes/shared/images/flags/us.png similarity index 100% rename from public/themes/shared/images/flags/us.png rename to resources/views/themes/shared/images/flags/us.png diff --git a/public/themes/shared/images/flags/vn.png b/resources/views/themes/shared/images/flags/vn.png similarity index 100% rename from public/themes/shared/images/flags/vn.png rename to resources/views/themes/shared/images/flags/vn.png diff --git a/public/themes/shared/images/glyphicons-halflings-white.png b/resources/views/themes/shared/images/glyphicons-halflings-white.png similarity index 100% rename from public/themes/shared/images/glyphicons-halflings-white.png rename to resources/views/themes/shared/images/glyphicons-halflings-white.png diff --git a/public/themes/shared/images/glyphicons-halflings.png b/resources/views/themes/shared/images/glyphicons-halflings.png similarity index 100% rename from public/themes/shared/images/glyphicons-halflings.png rename to resources/views/themes/shared/images/glyphicons-halflings.png diff --git a/public/themes/shared/images/icons/ade.png b/resources/views/themes/shared/images/icons/ade.png similarity index 100% rename from public/themes/shared/images/icons/ade.png rename to resources/views/themes/shared/images/icons/ade.png diff --git a/public/themes/shared/images/icons/adm.png b/resources/views/themes/shared/images/icons/adm.png similarity index 100% rename from public/themes/shared/images/icons/adm.png rename to resources/views/themes/shared/images/icons/adm.png diff --git a/public/themes/shared/images/icons/aebn.png b/resources/views/themes/shared/images/icons/aebn.png similarity index 100% rename from public/themes/shared/images/icons/aebn.png rename to resources/views/themes/shared/images/icons/aebn.png diff --git a/public/themes/shared/images/icons/allmusic.png b/resources/views/themes/shared/images/icons/allmusic.png similarity index 100% rename from public/themes/shared/images/icons/allmusic.png rename to resources/views/themes/shared/images/icons/allmusic.png diff --git a/public/themes/shared/images/icons/amazon.png b/resources/views/themes/shared/images/icons/amazon.png similarity index 100% rename from public/themes/shared/images/icons/amazon.png rename to resources/views/themes/shared/images/icons/amazon.png diff --git a/public/themes/shared/images/icons/anidb.png b/resources/views/themes/shared/images/icons/anidb.png similarity index 100% rename from public/themes/shared/images/icons/anidb.png rename to resources/views/themes/shared/images/icons/anidb.png diff --git a/public/themes/shared/images/icons/binsearch.png b/resources/views/themes/shared/images/icons/binsearch.png similarity index 100% rename from public/themes/shared/images/icons/binsearch.png rename to resources/views/themes/shared/images/icons/binsearch.png diff --git a/public/themes/shared/images/icons/broken.png b/resources/views/themes/shared/images/icons/broken.png similarity index 100% rename from public/themes/shared/images/icons/broken.png rename to resources/views/themes/shared/images/icons/broken.png diff --git a/public/themes/shared/images/icons/cartdown.png b/resources/views/themes/shared/images/icons/cartdown.png similarity index 100% rename from public/themes/shared/images/icons/cartdown.png rename to resources/views/themes/shared/images/icons/cartdown.png diff --git a/public/themes/shared/images/icons/cartup.png b/resources/views/themes/shared/images/icons/cartup.png similarity index 100% rename from public/themes/shared/images/icons/cartup.png rename to resources/views/themes/shared/images/icons/cartup.png diff --git a/public/themes/shared/images/icons/check.png b/resources/views/themes/shared/images/icons/check.png similarity index 100% rename from public/themes/shared/images/icons/check.png rename to resources/views/themes/shared/images/icons/check.png diff --git a/public/themes/shared/images/icons/couch.png b/resources/views/themes/shared/images/icons/couch.png similarity index 100% rename from public/themes/shared/images/icons/couch.png rename to resources/views/themes/shared/images/icons/couch.png diff --git a/public/themes/shared/images/icons/desura.png b/resources/views/themes/shared/images/icons/desura.png similarity index 100% rename from public/themes/shared/images/icons/desura.png rename to resources/views/themes/shared/images/icons/desura.png diff --git a/public/themes/shared/images/icons/discogs.png b/resources/views/themes/shared/images/icons/discogs.png similarity index 100% rename from public/themes/shared/images/icons/discogs.png rename to resources/views/themes/shared/images/icons/discogs.png diff --git a/public/themes/shared/images/icons/edit.gif b/resources/views/themes/shared/images/icons/edit.gif similarity index 100% rename from public/themes/shared/images/icons/edit.gif rename to resources/views/themes/shared/images/icons/edit.gif diff --git a/public/themes/shared/images/icons/exclamation.png b/resources/views/themes/shared/images/icons/exclamation.png similarity index 100% rename from public/themes/shared/images/icons/exclamation.png rename to resources/views/themes/shared/images/icons/exclamation.png diff --git a/public/themes/shared/images/icons/fresh.png b/resources/views/themes/shared/images/icons/fresh.png similarity index 100% rename from public/themes/shared/images/icons/fresh.png rename to resources/views/themes/shared/images/icons/fresh.png diff --git a/public/themes/shared/images/icons/gamespot.png b/resources/views/themes/shared/images/icons/gamespot.png similarity index 100% rename from public/themes/shared/images/icons/gamespot.png rename to resources/views/themes/shared/images/icons/gamespot.png diff --git a/public/themes/shared/images/icons/giantbomb.png b/resources/views/themes/shared/images/icons/giantbomb.png similarity index 100% rename from public/themes/shared/images/icons/giantbomb.png rename to resources/views/themes/shared/images/icons/giantbomb.png diff --git a/public/themes/shared/images/icons/go.png b/resources/views/themes/shared/images/icons/go.png similarity index 100% rename from public/themes/shared/images/icons/go.png rename to resources/views/themes/shared/images/icons/go.png diff --git a/public/themes/shared/images/icons/goodreads.png b/resources/views/themes/shared/images/icons/goodreads.png similarity index 100% rename from public/themes/shared/images/icons/goodreads.png rename to resources/views/themes/shared/images/icons/goodreads.png diff --git a/public/themes/shared/images/icons/greenlight.png b/resources/views/themes/shared/images/icons/greenlight.png similarity index 100% rename from public/themes/shared/images/icons/greenlight.png rename to resources/views/themes/shared/images/icons/greenlight.png diff --git a/public/themes/shared/images/icons/hotmovies.png b/resources/views/themes/shared/images/icons/hotmovies.png similarity index 100% rename from public/themes/shared/images/icons/hotmovies.png rename to resources/views/themes/shared/images/icons/hotmovies.png diff --git a/public/themes/shared/images/icons/iafd.png b/resources/views/themes/shared/images/icons/iafd.png similarity index 100% rename from public/themes/shared/images/icons/iafd.png rename to resources/views/themes/shared/images/icons/iafd.png diff --git a/public/themes/shared/images/icons/ign.png b/resources/views/themes/shared/images/icons/ign.png similarity index 100% rename from public/themes/shared/images/icons/ign.png rename to resources/views/themes/shared/images/icons/ign.png diff --git a/public/themes/shared/images/icons/imdb.png b/resources/views/themes/shared/images/icons/imdb.png similarity index 100% rename from public/themes/shared/images/icons/imdb.png rename to resources/views/themes/shared/images/icons/imdb.png diff --git a/public/themes/shared/images/icons/information.png b/resources/views/themes/shared/images/icons/information.png similarity index 100% rename from public/themes/shared/images/icons/information.png rename to resources/views/themes/shared/images/icons/information.png diff --git a/public/themes/shared/images/icons/lastfm.png b/resources/views/themes/shared/images/icons/lastfm.png similarity index 100% rename from public/themes/shared/images/icons/lastfm.png rename to resources/views/themes/shared/images/icons/lastfm.png diff --git a/public/themes/shared/images/icons/lock.gif b/resources/views/themes/shared/images/icons/lock.gif similarity index 100% rename from public/themes/shared/images/icons/lock.gif rename to resources/views/themes/shared/images/icons/lock.gif diff --git a/public/themes/shared/images/icons/lock2.png b/resources/views/themes/shared/images/icons/lock2.png similarity index 100% rename from public/themes/shared/images/icons/lock2.png rename to resources/views/themes/shared/images/icons/lock2.png diff --git a/public/themes/shared/images/icons/magnifier.png b/resources/views/themes/shared/images/icons/magnifier.png similarity index 100% rename from public/themes/shared/images/icons/magnifier.png rename to resources/views/themes/shared/images/icons/magnifier.png diff --git a/public/themes/shared/images/icons/note.png b/resources/views/themes/shared/images/icons/note.png similarity index 100% rename from public/themes/shared/images/icons/note.png rename to resources/views/themes/shared/images/icons/note.png diff --git a/public/themes/shared/images/icons/note_add.png b/resources/views/themes/shared/images/icons/note_add.png similarity index 100% rename from public/themes/shared/images/icons/note_add.png rename to resources/views/themes/shared/images/icons/note_add.png diff --git a/public/themes/shared/images/icons/note_edit.png b/resources/views/themes/shared/images/icons/note_edit.png similarity index 100% rename from public/themes/shared/images/icons/note_edit.png rename to resources/views/themes/shared/images/icons/note_edit.png diff --git a/public/themes/shared/images/icons/nuke.png b/resources/views/themes/shared/images/icons/nuke.png similarity index 100% rename from public/themes/shared/images/icons/nuke.png rename to resources/views/themes/shared/images/icons/nuke.png diff --git a/public/themes/shared/images/icons/nuked.png b/resources/views/themes/shared/images/icons/nuked.png similarity index 100% rename from public/themes/shared/images/icons/nuked.png rename to resources/views/themes/shared/images/icons/nuked.png diff --git a/public/themes/shared/images/icons/nzbdown.png b/resources/views/themes/shared/images/icons/nzbdown.png similarity index 100% rename from public/themes/shared/images/icons/nzbdown.png rename to resources/views/themes/shared/images/icons/nzbdown.png diff --git a/public/themes/shared/images/icons/nzbindex.png b/resources/views/themes/shared/images/icons/nzbindex.png similarity index 100% rename from public/themes/shared/images/icons/nzbindex.png rename to resources/views/themes/shared/images/icons/nzbindex.png diff --git a/public/themes/shared/images/icons/nzbup.png b/resources/views/themes/shared/images/icons/nzbup.png similarity index 100% rename from public/themes/shared/images/icons/nzbup.png rename to resources/views/themes/shared/images/icons/nzbup.png diff --git a/public/themes/shared/images/icons/popporn.png b/resources/views/themes/shared/images/icons/popporn.png similarity index 100% rename from public/themes/shared/images/icons/popporn.png rename to resources/views/themes/shared/images/icons/popporn.png diff --git a/public/themes/shared/images/icons/predbme.png b/resources/views/themes/shared/images/icons/predbme.png similarity index 100% rename from public/themes/shared/images/icons/predbme.png rename to resources/views/themes/shared/images/icons/predbme.png diff --git a/public/themes/shared/images/icons/queuedown.png b/resources/views/themes/shared/images/icons/queuedown.png similarity index 100% rename from public/themes/shared/images/icons/queuedown.png rename to resources/views/themes/shared/images/icons/queuedown.png diff --git a/public/themes/shared/images/icons/queueup.png b/resources/views/themes/shared/images/icons/queueup.png similarity index 100% rename from public/themes/shared/images/icons/queueup.png rename to resources/views/themes/shared/images/icons/queueup.png diff --git a/public/themes/shared/images/icons/rotten.png b/resources/views/themes/shared/images/icons/rotten.png similarity index 100% rename from public/themes/shared/images/icons/rotten.png rename to resources/views/themes/shared/images/icons/rotten.png diff --git a/public/themes/shared/images/icons/rottentomatoes.png b/resources/views/themes/shared/images/icons/rottentomatoes.png similarity index 100% rename from public/themes/shared/images/icons/rottentomatoes.png rename to resources/views/themes/shared/images/icons/rottentomatoes.png diff --git a/public/themes/shared/images/icons/sabdown.png b/resources/views/themes/shared/images/icons/sabdown.png similarity index 100% rename from public/themes/shared/images/icons/sabdown.png rename to resources/views/themes/shared/images/icons/sabdown.png diff --git a/public/themes/shared/images/icons/sabup.png b/resources/views/themes/shared/images/icons/sabup.png similarity index 100% rename from public/themes/shared/images/icons/sabup.png rename to resources/views/themes/shared/images/icons/sabup.png diff --git a/public/themes/shared/images/icons/shelfari.png b/resources/views/themes/shared/images/icons/shelfari.png similarity index 100% rename from public/themes/shared/images/icons/shelfari.png rename to resources/views/themes/shared/images/icons/shelfari.png diff --git a/public/themes/shared/images/icons/steam.png b/resources/views/themes/shared/images/icons/steam.png similarity index 100% rename from public/themes/shared/images/icons/steam.png rename to resources/views/themes/shared/images/icons/steam.png diff --git a/public/themes/shared/images/icons/switch.png b/resources/views/themes/shared/images/icons/switch.png similarity index 100% rename from public/themes/shared/images/icons/switch.png rename to resources/views/themes/shared/images/icons/switch.png diff --git a/public/themes/shared/images/icons/trakt.png b/resources/views/themes/shared/images/icons/trakt.png similarity index 100% rename from public/themes/shared/images/icons/trakt.png rename to resources/views/themes/shared/images/icons/trakt.png diff --git a/public/themes/shared/images/icons/tvdb.png b/resources/views/themes/shared/images/icons/tvdb.png similarity index 100% rename from public/themes/shared/images/icons/tvdb.png rename to resources/views/themes/shared/images/icons/tvdb.png diff --git a/public/themes/shared/images/icons/tvmaze.png b/resources/views/themes/shared/images/icons/tvmaze.png similarity index 100% rename from public/themes/shared/images/icons/tvmaze.png rename to resources/views/themes/shared/images/icons/tvmaze.png diff --git a/public/themes/shared/images/icons/tvrage.png b/resources/views/themes/shared/images/icons/tvrage.png similarity index 100% rename from public/themes/shared/images/icons/tvrage.png rename to resources/views/themes/shared/images/icons/tvrage.png diff --git a/public/themes/shared/images/icons/unnuked.png b/resources/views/themes/shared/images/icons/unnuked.png similarity index 100% rename from public/themes/shared/images/icons/unnuked.png rename to resources/views/themes/shared/images/icons/unnuked.png diff --git a/public/themes/shared/images/icons/vortex/arrow2_n.png b/resources/views/themes/shared/images/icons/vortex/arrow2_n.png similarity index 100% rename from public/themes/shared/images/icons/vortex/arrow2_n.png rename to resources/views/themes/shared/images/icons/vortex/arrow2_n.png diff --git a/public/themes/shared/images/icons/vortex/arrow2_s.png b/resources/views/themes/shared/images/icons/vortex/arrow2_s.png similarity index 100% rename from public/themes/shared/images/icons/vortex/arrow2_s.png rename to resources/views/themes/shared/images/icons/vortex/arrow2_s.png diff --git a/public/themes/shared/images/icons/vortex/arrow3_n.png b/resources/views/themes/shared/images/icons/vortex/arrow3_n.png similarity index 100% rename from public/themes/shared/images/icons/vortex/arrow3_n.png rename to resources/views/themes/shared/images/icons/vortex/arrow3_n.png diff --git a/public/themes/shared/images/icons/vortex/arrow3_s.png b/resources/views/themes/shared/images/icons/vortex/arrow3_s.png similarity index 100% rename from public/themes/shared/images/icons/vortex/arrow3_s.png rename to resources/views/themes/shared/images/icons/vortex/arrow3_s.png diff --git a/public/themes/shared/images/icons/vortex/bigsmile.png b/resources/views/themes/shared/images/icons/vortex/bigsmile.png similarity index 100% rename from public/themes/shared/images/icons/vortex/bigsmile.png rename to resources/views/themes/shared/images/icons/vortex/bigsmile.png diff --git a/public/themes/shared/images/icons/vortex/bigsmiledown.png b/resources/views/themes/shared/images/icons/vortex/bigsmiledown.png similarity index 100% rename from public/themes/shared/images/icons/vortex/bigsmiledown.png rename to resources/views/themes/shared/images/icons/vortex/bigsmiledown.png diff --git a/public/themes/shared/images/icons/vortex/blah.png b/resources/views/themes/shared/images/icons/vortex/blah.png similarity index 100% rename from public/themes/shared/images/icons/vortex/blah.png rename to resources/views/themes/shared/images/icons/vortex/blah.png diff --git a/public/themes/shared/images/icons/vortex/edit.png b/resources/views/themes/shared/images/icons/vortex/edit.png similarity index 100% rename from public/themes/shared/images/icons/vortex/edit.png rename to resources/views/themes/shared/images/icons/vortex/edit.png diff --git a/public/themes/shared/images/icons/vortex/frown.png b/resources/views/themes/shared/images/icons/vortex/frown.png similarity index 100% rename from public/themes/shared/images/icons/vortex/frown.png rename to resources/views/themes/shared/images/icons/vortex/frown.png diff --git a/public/themes/shared/images/icons/vortex/pause.png b/resources/views/themes/shared/images/icons/vortex/pause.png similarity index 100% rename from public/themes/shared/images/icons/vortex/pause.png rename to resources/views/themes/shared/images/icons/vortex/pause.png diff --git a/public/themes/shared/images/icons/vortex/play.png b/resources/views/themes/shared/images/icons/vortex/play.png similarity index 100% rename from public/themes/shared/images/icons/vortex/play.png rename to resources/views/themes/shared/images/icons/vortex/play.png diff --git a/public/themes/shared/images/icons/vortex/stop.png b/resources/views/themes/shared/images/icons/vortex/stop.png similarity index 100% rename from public/themes/shared/images/icons/vortex/stop.png rename to resources/views/themes/shared/images/icons/vortex/stop.png diff --git a/public/themes/shared/images/icons/vortex/trash.png b/resources/views/themes/shared/images/icons/vortex/trash.png similarity index 100% rename from public/themes/shared/images/icons/vortex/trash.png rename to resources/views/themes/shared/images/icons/vortex/trash.png diff --git a/public/themes/shared/images/icons/vortex/tv.png b/resources/views/themes/shared/images/icons/vortex/tv.png similarity index 100% rename from public/themes/shared/images/icons/vortex/tv.png rename to resources/views/themes/shared/images/icons/vortex/tv.png diff --git a/public/themes/shared/images/icons/warning.png b/resources/views/themes/shared/images/icons/warning.png similarity index 100% rename from public/themes/shared/images/icons/warning.png rename to resources/views/themes/shared/images/icons/warning.png diff --git a/public/themes/shared/images/logo_large.png b/resources/views/themes/shared/images/logo_large.png similarity index 100% rename from public/themes/shared/images/logo_large.png rename to resources/views/themes/shared/images/logo_large.png diff --git a/public/themes/shared/images/logo_largeplus.png b/resources/views/themes/shared/images/logo_largeplus.png similarity index 100% rename from public/themes/shared/images/logo_largeplus.png rename to resources/views/themes/shared/images/logo_largeplus.png diff --git a/public/themes/shared/images/logo_largeplushigh.png b/resources/views/themes/shared/images/logo_largeplushigh.png similarity index 100% rename from public/themes/shared/images/logo_largeplushigh.png rename to resources/views/themes/shared/images/logo_largeplushigh.png diff --git a/public/themes/shared/images/menu.gif b/resources/views/themes/shared/images/menu.gif similarity index 100% rename from public/themes/shared/images/menu.gif rename to resources/views/themes/shared/images/menu.gif diff --git a/public/themes/shared/images/multimedia/audio.png b/resources/views/themes/shared/images/multimedia/audio.png similarity index 100% rename from public/themes/shared/images/multimedia/audio.png rename to resources/views/themes/shared/images/multimedia/audio.png diff --git a/public/themes/shared/images/multimedia/video.png b/resources/views/themes/shared/images/multimedia/video.png similarity index 100% rename from public/themes/shared/images/multimedia/video.png rename to resources/views/themes/shared/images/multimedia/video.png diff --git a/public/themes/shared/images/nav-tile.png b/resources/views/themes/shared/images/nav-tile.png similarity index 100% rename from public/themes/shared/images/nav-tile.png rename to resources/views/themes/shared/images/nav-tile.png diff --git a/public/themes/shared/images/newwindow.png b/resources/views/themes/shared/images/newwindow.png similarity index 100% rename from public/themes/shared/images/newwindow.png rename to resources/views/themes/shared/images/newwindow.png diff --git a/public/themes/shared/images/nn_small.jpg b/resources/views/themes/shared/images/nn_small.jpg similarity index 100% rename from public/themes/shared/images/nn_small.jpg rename to resources/views/themes/shared/images/nn_small.jpg diff --git a/public/themes/shared/images/no-cover.png b/resources/views/themes/shared/images/no-cover.png similarity index 100% rename from public/themes/shared/images/no-cover.png rename to resources/views/themes/shared/images/no-cover.png diff --git a/public/themes/shared/images/nocover.png b/resources/views/themes/shared/images/nocover.png similarity index 100% rename from public/themes/shared/images/nocover.png rename to resources/views/themes/shared/images/nocover.png diff --git a/public/themes/shared/images/nocover2.png b/resources/views/themes/shared/images/nocover2.png similarity index 100% rename from public/themes/shared/images/nocover2.png rename to resources/views/themes/shared/images/nocover2.png diff --git a/public/themes/shared/images/nomoviecover.jpg b/resources/views/themes/shared/images/nomoviecover.jpg similarity index 100% rename from public/themes/shared/images/nomoviecover.jpg rename to resources/views/themes/shared/images/nomoviecover.jpg diff --git a/public/themes/shared/images/nzbget.png b/resources/views/themes/shared/images/nzbget.png similarity index 100% rename from public/themes/shared/images/nzbget.png rename to resources/views/themes/shared/images/nzbget.png diff --git a/public/themes/shared/images/powered.png b/resources/views/themes/shared/images/powered.png similarity index 100% rename from public/themes/shared/images/powered.png rename to resources/views/themes/shared/images/powered.png diff --git a/public/themes/shared/images/sabnzbd.png b/resources/views/themes/shared/images/sabnzbd.png similarity index 100% rename from public/themes/shared/images/sabnzbd.png rename to resources/views/themes/shared/images/sabnzbd.png diff --git a/public/themes/shared/images/sickbeard.png b/resources/views/themes/shared/images/sickbeard.png similarity index 100% rename from public/themes/shared/images/sickbeard.png rename to resources/views/themes/shared/images/sickbeard.png diff --git a/public/themes/shared/images/sorting/arrow_down.gif b/resources/views/themes/shared/images/sorting/arrow_down.gif similarity index 100% rename from public/themes/shared/images/sorting/arrow_down.gif rename to resources/views/themes/shared/images/sorting/arrow_down.gif diff --git a/public/themes/shared/images/sorting/arrow_up.gif b/resources/views/themes/shared/images/sorting/arrow_up.gif similarity index 100% rename from public/themes/shared/images/sorting/arrow_up.gif rename to resources/views/themes/shared/images/sorting/arrow_up.gif diff --git a/public/themes/shared/images/tmux_logo.png b/resources/views/themes/shared/images/tmux_logo.png similarity index 100% rename from public/themes/shared/images/tmux_logo.png rename to resources/views/themes/shared/images/tmux_logo.png diff --git a/public/themes/shared/images/tvrage_small.gif b/resources/views/themes/shared/images/tvrage_small.gif similarity index 100% rename from public/themes/shared/images/tvrage_small.gif rename to resources/views/themes/shared/images/tvrage_small.gif diff --git a/public/themes/shared/images/user-loggedin.png b/resources/views/themes/shared/images/user-loggedin.png similarity index 100% rename from public/themes/shared/images/user-loggedin.png rename to resources/views/themes/shared/images/user-loggedin.png diff --git a/public/themes/shared/images/userimage.png b/resources/views/themes/shared/images/userimage.png similarity index 100% rename from public/themes/shared/images/userimage.png rename to resources/views/themes/shared/images/userimage.png diff --git a/public/themes/shared/images/valid-xhtml10.png b/resources/views/themes/shared/images/valid-xhtml10.png similarity index 100% rename from public/themes/shared/images/valid-xhtml10.png rename to resources/views/themes/shared/images/valid-xhtml10.png diff --git a/public/themes/shared/js/custom.js b/resources/views/themes/shared/js/custom.js similarity index 100% rename from public/themes/shared/js/custom.js rename to resources/views/themes/shared/js/custom.js diff --git a/public/themes/shared/js/functions.js b/resources/views/themes/shared/js/functions.js similarity index 100% rename from public/themes/shared/js/functions.js rename to resources/views/themes/shared/js/functions.js diff --git a/public/themes/shared/js/jquery.multifile.js b/resources/views/themes/shared/js/jquery.multifile.js similarity index 100% rename from public/themes/shared/js/jquery.multifile.js rename to resources/views/themes/shared/js/jquery.multifile.js diff --git a/public/themes/shared/js/jquery.multiselect.js b/resources/views/themes/shared/js/jquery.multiselect.js similarity index 100% rename from public/themes/shared/js/jquery.multiselect.js rename to resources/views/themes/shared/js/jquery.multiselect.js diff --git a/public/themes/shared/js/jquery.pnotify.js b/resources/views/themes/shared/js/jquery.pnotify.js similarity index 100% rename from public/themes/shared/js/jquery.pnotify.js rename to resources/views/themes/shared/js/jquery.pnotify.js diff --git a/public/themes/shared/js/jquery.qtip.min.js b/resources/views/themes/shared/js/jquery.qtip.min.js similarity index 100% rename from public/themes/shared/js/jquery.qtip.min.js rename to resources/views/themes/shared/js/jquery.qtip.min.js diff --git a/public/themes/shared/js/jquery.qtip2.js b/resources/views/themes/shared/js/jquery.qtip2.js similarity index 100% rename from public/themes/shared/js/jquery.qtip2.js rename to resources/views/themes/shared/js/jquery.qtip2.js diff --git a/public/themes/shared/js/nprogress.js b/resources/views/themes/shared/js/nprogress.js similarity index 100% rename from public/themes/shared/js/nprogress.js rename to resources/views/themes/shared/js/nprogress.js diff --git a/public/themes/shared/js/sorttable.js b/resources/views/themes/shared/js/sorttable.js similarity index 100% rename from public/themes/shared/js/sorttable.js rename to resources/views/themes/shared/js/sorttable.js diff --git a/public/themes/shared/js/utils-admin.js b/resources/views/themes/shared/js/utils-admin.js similarity index 100% rename from public/themes/shared/js/utils-admin.js rename to resources/views/themes/shared/js/utils-admin.js diff --git a/public/themes/shared/js/utils.js b/resources/views/themes/shared/js/utils.js similarity index 100% rename from public/themes/shared/js/utils.js rename to resources/views/themes/shared/js/utils.js diff --git a/public/themes/shared/pager.tpl b/resources/views/themes/shared/pager.tpl similarity index 100% rename from public/themes/shared/pager.tpl rename to resources/views/themes/shared/pager.tpl diff --git a/public/themes/shared/rssdesc.tpl b/resources/views/themes/shared/rssdesc.tpl similarity index 100% rename from public/themes/shared/rssdesc.tpl rename to resources/views/themes/shared/rssdesc.tpl diff --git a/public/themes/shared/search-filter.tpl b/resources/views/themes/shared/search-filter.tpl similarity index 100% rename from public/themes/shared/search-filter.tpl rename to resources/views/themes/shared/search-filter.tpl diff --git a/public/smarty.php b/resources/views/themes/smarty.php similarity index 86% rename from public/smarty.php rename to resources/views/themes/smarty.php index ac0dc5888..ab175b6e3 100644 --- a/public/smarty.php +++ b/resources/views/themes/smarty.php @@ -18,13 +18,13 @@ * @author niel * @copyright 2015 NN */ -require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'bootstrap'.DIRECTORY_SEPARATOR.'autoload.php'; +require_once dirname(__DIR__, 2).DIRECTORY_SEPARATOR.'bootstrap'.DIRECTORY_SEPARATOR.'autoload.php'; if (function_exists('ini_set') && function_exists('ini_get')) { ini_set('include_path', NN_WWW.PATH_SEPARATOR.ini_get('include_path')); } -$www_top = str_replace('\\', '/', dirname($_SERVER['PHP_SELF'])); +$www_top = str_replace('\\', '/', base_path(). '/public'); if (strlen($www_top) === 1) { $www_top = ''; }