Skip to content

Commit

Permalink
Adapts temp files to new framework structure
Browse files Browse the repository at this point in the history
Works on #6
  • Loading branch information
arbolitoloco committed Feb 7, 2020
1 parent 3cf751a commit 8d8ecdd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion temp/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,17 @@
<html>
<head>
<title>Page</title>
<link rel="stylesheet" href="<?php echo $CLIENT_ROOT; ?>/css/main.css<?php echo (isset($CSS_VERSION_LOCAL)?'?ver='.$CSS_VERSION_LOCAL:''); ?>" type="text/css" />
<?php
$activateJQuery = false;
if(file_exists($SERVER_ROOT.'/includes/head.php')){
include_once($SERVER_ROOT.'/includes/head.php');
}
else{
echo '<link href="'.$CLIENT_ROOT.'/css/jquery-ui.css" type="text/css" rel="stylesheet" />';
echo '<link href="'.$CLIENT_ROOT.'/css/base.css?ver=1" type="text/css" rel="stylesheet" />';
echo '<link href="'.$CLIENT_ROOT.'/css/main.css?ver=1" type="text/css" rel="stylesheet" />';
}
?>
</head>
<body>
<?php
Expand Down

0 comments on commit 8d8ecdd

Please sign in to comment.