diff --git a/site/plugins/admin/views/templates/system/information/list.php b/site/plugins/admin/views/templates/system/information/list.php
deleted file mode 100644
index d6a80a58..00000000
--- a/site/plugins/admin/views/templates/system/information/list.php
+++ /dev/null
@@ -1,129 +0,0 @@
-display();
-Themes::view('admin/views/partials/navbar')
- ->assign('links', [
- 'information' => [
- 'link' => Http::getBaseUrl() . '/admin/information',
- 'title' => __('admin_information'),
- 'attributes' => ['class' => 'navbar-item active']
- ],
- ])
- ->display();
-Themes::view('admin/views/partials/content-start')->display();
-?>
-
-
-
-
-
= __('admin_site'); ?>
-
-
-
-
-
- = Form::label('title', __('admin_site_title'), ['for' => 'systemSettingsSiteTitle']) ?>
- = Form::input('title', $settings['title'], ['class' => 'form-control', 'id' => 'systemSettingsSiteTitle', 'required']) ?>
-
-
- = Form::label('description', __('admin_site_description'), ['for' => 'systemSettingsSiteDescription']) ?>
- = Form::input('description', $settings['description'], ['class' => 'form-control margin-hard-bottom', 'id' => 'systemSettingsSiteDescription']) ?>
-
-
- = Form::label('keywords', __('admin_site_keywords'), ['for' => 'systemSettingsSiteKeywords']) ?>
- = Form::input('keywords', $settings['keywords'], ['class' => 'form-control', 'id' => 'systemSettingsSiteKeywords', 'required']) ?>
-
-
-
-
- = Form::label('robots', __('admin_site_robots'), ['for' => 'systemSettingsSiteRobots']) ?>
- = Form::input('robots', $settings['robots'], ['class' => 'form-control', 'id' => 'systemSettingsSiteRobots', 'required']) ?>
-
-
- = Form::label('author[name]', __('admin_author_name'), ['for' => 'systemSettingsSiteAuthorName']) ?>
- = Form::input('author[name]', $settings['author']['name'], ['class' => 'form-control', 'id' => 'systemSettingsSiteAuthorName', 'required']) ?>
-
-
- = Form::label('author[email]', __('admin_author_email'), ['for' => 'systemSettingsSiteAuthorEmail']) ?>
- = Form::input('author[email]', $settings['author']['email'], ['class' => 'form-control', 'id' => 'systemSettingsSiteAuthorEmail', 'required']) ?>
-
-
-
-
-
-
= __('admin_general'); ?>
-
-
-
-
-
- = Form::label('timezone', __('admin_timezone'), ['for' => 'systemSettingsSystemTimezone']) ?>
- = Form::select('timezone', Date::timezones(), $settings['timezone'], ['class' => 'form-control', 'id' => 'systemSettingsSystemTimezone', 'required']) ?>
-
-
- = Form::label('date_format', __('admin_date_format'), ['for' => 'systemSettingsSystemDateFormat']) ?>
- = Form::input('date_format', $settings['date_format'], ['class' => 'form-control', 'id' => 'systemSettingsSystemDateFormat', 'required']) ?>
-
-
- = Form::label('charset', __('admin_charset'), ['for' => 'systemSettingsSystemCharset']) ?>
- = Form::input('charset', $settings['charset'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCharset', 'required']) ?>
-
-
-
-
- = Form::label('theme', __('admin_theme'), ['for' => 'systemSettingsSystemTheme']) ?>
- = Form::select('theme', $themes, $settings['theme'], ['class' => 'form-control', 'id' => 'systemSettingsSystemTheme', 'required']) ?>
-
-
- = Form::label('locale', __('admin_locale'), ['for' => 'systemSettingsSystemLocale']) ?>
- = Form::select('locale', $locales, $settings['locale'], ['class' => 'form-control', 'id' => 'entryTemplate']) ?>
-
-
- = Form::label('entries[main]', __('admin_entry_main'), ['for' => 'systemSettingsSystemEntriesMain']) ?>
- = Form::select('entries[main]', $entries, $settings['entries']['main'], ['class' => 'form-control', 'id' => 'systemSettingsSystemEntriesMain', 'required']) ?>
-
-
-
-
-
-
= __('admin_media'); ?>
-
-
-
-
-
- = Form::label('entries[media][upload_images_quality]', __('admin_quality'), ['for' => 'systemSettingsSystemTheme']) ?>
- = Form::input('entries[media][upload_images_quality]', $settings['entries']['media']['upload_images_quality'], ['class' => 'form-control', 'id' => 'systemSettingsSystemTheme', 'required']) ?>
-
-
- = Form::label('entries[media][accept_file_types]', __('admin_accept_file_types'), ['for' => 'systemSettingsSystemTheme']) ?>
- = Form::input('entries[media][accept_file_types]', $settings['entries']['media']['accept_file_types'], ['class' => 'form-control', 'id' => 'systemSettingsSystemTheme', 'required']) ?>
-
-
-
-
- = Form::label('entries[media][upload_images_width]', __('admin_width'), ['for' => 'systemSettingsSystemTheme']) ?>
- = Form::input('entries[media][upload_images_width]', $settings['entries']['media']['upload_images_width'], ['class' => 'form-control', 'id' => 'systemSettingsSystemTheme', 'required']) ?>
-
-
- = Form::label('entries[media][upload_images_height]', __('admin_height'), ['for' => 'systemSettingsSystemEntriesMain']) ?>
- = Form::input('entries[media][upload_images_height]', $settings['entries']['media']['upload_images_height'], ['class' => 'form-control', 'id' => 'systemSettingsSystemEntriesMain', 'required']) ?>
-
-
-
-
-
-
= __('admin_error_404_page'); ?>
-
-
-
-
-
- = Form::label('entries[error404][title]', __('admin_error404_title'), ['for' => 'systemSettingsSystemEntriesError404Title']) ?>
- = Form::input('entries[error404][title]', $settings['entries']['error404']['title'], ['class' => 'form-control', 'id' => 'systemSettingsSystemEntriesError404Title', 'required']) ?>
-
-
- = Form::label('entries[error404][description]', __('admin_error404_description'), ['for' => 'systemSettingsSystemEntriesError404Description']) ?>
- = Form::input('entries[error404][description]', $settings['entries']['error404']['description'], ['class' => 'form-control', 'id' => 'systemSettingsSystemEntriesError404Description', 'required']) ?>
-
-
-
-
- = Form::label('entries[error404][content]', __('admin_error404_content'), ['for' => 'systemSettingsSystemEntriesError404Content']) ?>
- = Form::input('entries[error404][content]', $settings['entries']['error404']['content'], ['class' => 'form-control', 'id' => 'systemSettingsSystemEntriesError404Content', 'required']) ?>
-
-
- = Form::label('entries[error404][template]', __('admin_error404_template'), ['for' => 'systemSettingsSystemEntriesError404Template']) ?>
- = Form::input('entries[error404][template]', $settings['entries']['error404']['template'], ['class' => 'form-control', 'id' => 'systemSettingsSystemEntriesError404Template', 'required']) ?>
-
-
-
-
-
-
= __('admin_debugging'); ?>
-
-
-
-
-
- = Form::label('errors[display]', __('admin_errors_display'), ['for' => 'systemSettingsSystemErrorsDisplay']) ?>
- = Form::select('errors[display]', [0 => __('admin_disabled'), 1 => __('admin_enabled')], $settings['errors']['display'], ['class' => 'form-control', 'id' => 'systemSettingsSystemErrorsDisplay', 'required']) ?>
-
-
-
-
-
-
-
= __('admin_cache'); ?>
-
-
-
-
-
- = Form::label('cache[enabled]', __('admin_cache_enabled'), ['for' => 'systemSettingsSystemCacheEnabled']) ?>
- = Form::select('cache[enabled]', [0 => __('admin_disabled'), 1 => __('admin_enabled')], $settings['cache']['enabled'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheEnabled', 'required']) ?>
-
-
- = Form::label('cache[prefix]', __('admin_cache_prefix'), ['for' => 'systemSettingsSystemCachePrefix']) ?>
- = Form::input('cache[prefix]', $settings['cache']['prefix'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCachePrefix', 'required']) ?>
-
-
-
-
- = Form::label('cache[driver]', __('admin_cache_driver'), ['for' => 'systemSettingsSystemCacheDriver']) ?>
- = Form::select('cache[driver]', $cache_driver, $settings['cache']['driver'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheDriver', 'required']) ?>
-
-
- = Form::label('cache[lifetime]', __('admin_cache_lifetime'), ['for' => 'systemSettingsSystemCacheLifetime']) ?>
- = Form::input('cache[lifetime]', $settings['cache']['lifetime'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheLifetime', 'required']) ?>
-
-
-
-
- = Form::label('cache[memcached][server]', __('admin_memcached_server'), ['for' => 'systemSettingsSystemCacheMemcachedServer']) ?>
- = Form::input('cache[memcached][server]', $settings['cache']['memcached']['server'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheMemcachedServer', 'required']) ?>
-
-
- = Form::label('cache[memcached][port]', __('admin_memcached_port'), ['for' => 'systemSettingsSystemCacheMemcachedPort']) ?>
- = Form::input('cache[memcached][port]', $settings['cache']['memcached']['port'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheMemcachedPort', 'required']) ?>
-
-
-
-
- = Form::label('cache[redis][socket]', __('admin_redis_socket'), ['for' => 'systemSettingsSystemCacheRedisSocket']) ?>
- = Form::input('cache[redis][socket]', $settings['cache']['redis']['socket'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheRedisSocket', 'required']) ?>
-
-
- = Form::label('cache[redis][password]', __('admin_redis_password'), ['for' => 'systemSettingsSystemCacheRedisPassword']) ?>
- = Form::input('cache[redis][password]', $settings['cache']['redis']['password'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheRedisPassword', 'required']) ?>
-
-
-
-
- = Form::label('cache[redis][server]', __('admin_redis_server'), ['for' => 'systemSettingsSystemCacheRedisServer']) ?>
- = Form::input('cache[redis][server]', $settings['cache']['redis']['server'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheRedisServer', 'required']) ?>
-
-
- = Form::label('cache[redis][port]', __('admin_redis_port'), ['for' => 'systemSettingsSystemCacheRedisPort']) ?>
- = Form::input('cache[redis][port]', $settings['cache']['redis']['port'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheRedisPort', 'required']) ?>
-
-
-
-
- = Form::label('cache[sqlite3][database]', __('admin_sqlite3_database'), ['for' => 'systemSettingsSystemCacheSQLite3Database']) ?>
- = Form::input('cache[sqlite3][database]', $settings['cache']['sqlite3']['database'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheSQLite3Database', 'required']) ?>
-
-
-
-
- = Form::label('cache[sqlite3][table]', __('admin_sqlite3_table'), ['for' => 'systemSettingsSystemCacheSQLite3Table']) ?>
- = Form::input('cache[sqlite3][table]', $settings['cache']['sqlite3']['table'], ['class' => 'form-control', 'id' => 'systemSettingsSystemCacheSQLite3Table', 'required']) ?>
-
-
-
-
-
-
= __('admin_admin_panel'); ?>
-
-
-
-
-
- = Form::label('admin_panel[theme]', __('admin_theme'), ['for' => 'systemSettingsSystemAdminPanelTheme']) ?>
- = Form::select('admin_panel[theme]', ['light' => __('admin_light'), 'dark' => __('admin_dark')], $settings['admin_panel']['theme'], ['class' => 'form-control', 'id' => 'systemSettingsSystemAdminPanelTheme', 'required']) ?>
-
-
-
-= Form::close() ?>
-
-display();
-Themes::view('admin/views/partials/footer')->display();
-?>