You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
957 B
37 lines
957 B
<?php
|
|
|
|
/**
|
|
*
|
|
* @package templates/default
|
|
*/
|
|
|
|
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
|
|
|
|
$archiveConfig = DUPX_ArchiveConfig::getInstance();
|
|
|
|
/* Variables */
|
|
/* @var $paramView string */
|
|
/* @var $bodyId string */
|
|
/* @var $bodyClasses string */
|
|
?><!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php dupxTplRender('pages-parts/head/meta'); ?>
|
|
<title>Duplicator</title>
|
|
<?php dupxTplRender('pages-parts/head/css-scripts'); ?>
|
|
<?php dupxTplRender('pages-parts/head/css-template-custom'); ?>
|
|
</head>
|
|
<?php
|
|
dupxTplRender('pages-parts/body/body-tag', array(
|
|
'bodyId' => $bodyId,
|
|
'bodyClasses' => $bodyClasses
|
|
));
|
|
?>
|
|
<div id="content">
|
|
<?php
|
|
dupxTplRender('parts/top-header.php', array(
|
|
'paramView' => $paramView
|
|
));
|
|
if (!isset($skipTopMessages) || $skipTopMessages !== true) {
|
|
dupxTplRender('parts/top-messages.php');
|
|
}
|
|
|