Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
administrator /
templates /
isis /
Delete
Unzip
Name
Size
Permission
Date
Action
css
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
html
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
images
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
img
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
js
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
language
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
less
[ DIR ]
drwxr-xr-x
2025-02-08 22:29
component.php
1.7
KB
-rwxr-xr-x
2023-07-08 16:23
cpanel.php
305
B
-rwxr-xr-x
2023-07-08 16:23
error.php
12.09
KB
-rwxr-xr-x
2023-07-08 16:23
favicon.ico
1.97
KB
-rwxr-xr-x
2023-07-08 16:23
index.php
11.05
KB
-rwxr-xr-x
2023-07-08 16:23
login.php
4.51
KB
-rwxr-xr-x
2023-07-08 16:23
templateDetails.xml
4.21
KB
-rwxr-xr-x
2023-07-08 16:23
template_preview.png
27.81
KB
-rwxr-xr-x
2023-07-08 16:23
template_thumbnail.png
7.75
KB
-rwxr-xr-x
2023-07-08 16:23
Save
Rename
<?php /** * @package Joomla.Administrator * @subpackage Templates.isis * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** @var JDocumentHtml $this */ $app = JFactory::getApplication(); $lang = JFactory::getLanguage(); // Output as HTML5 $this->setHtml5(true); // Add JavaScript Frameworks JHtml::_('bootstrap.framework'); // Add filter polyfill for IE8 JHtml::_('behavior.polyfill', array('filter'), 'lte IE 9'); // Add template js JHtml::_('script', 'template.js', array('version' => 'auto', 'relative' => true)); // Add html5 shiv JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9')); // Add Stylesheets JHtml::_('stylesheet', 'template' . ($this->direction === 'rtl' ? '-rtl' : '') . '.css', array('version' => 'auto', 'relative' => true)); // Load optional RTL Bootstrap CSS JHtml::_('bootstrap.loadCss', false, $this->direction); // Load specific language related CSS JHtml::_('stylesheet', 'administrator/language/' . $lang->getTag() . '/' . $lang->getTag() . '.css', array('version' => 'auto')); // Load custom.css JHtml::_('stylesheet', 'custom.css', array('version' => 'auto', 'relative' => true)); // Link color if ($this->params->get('linkColor')) { $this->addStyleDeclaration('a { color: ' . $this->params->get('linkColor') . '; }'); } ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <jdoc:include type="head" /> </head> <body class="contentpane component"> <jdoc:include type="message" /> <jdoc:include type="component" /> </body> </html>