Rétablissement des url absolues

This commit is contained in:
LC 2023-01-22 16:10:21 +01:00
parent 7b7c0c818f
commit 841db1a061
1 changed files with 5 additions and 5 deletions

View File

@ -8,12 +8,12 @@
$this->showFavicon();
$this->showVendor();
?>
<link rel="stylesheet" href="core/layout/common.css">
<link rel="stylesheet" href="core/layout/mediaqueries.css">
<link rel="stylesheet" href="core/layout/blank.css">
<link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>theme.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/mediaqueries.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/blank.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>theme.css">
<?php $this->showStyle(); ?>
<link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>custom.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css">
</head>
<body>
<?php $this->showContent(); ?>