Déplacement de showStyle()

This commit is contained in:
LC 2023-01-22 15:05:01 +01:00
parent 4ce872a499
commit 7895846b17
1 changed files with 7 additions and 7 deletions

View File

@ -4,16 +4,16 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<?php <?php
$this->showMetaTitle(); $this->showMetaTitle();
$this->showFavicon(); $this->showFavicon();
$this->showVendor(); $this->showVendor();
$this->showStyle();
?> ?>
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css"> <link rel="stylesheet" href="core/layout/common.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/mediaqueries.css"> <link rel="stylesheet" href="core/layout/mediaqueries.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/light.css"> <link rel="stylesheet" href="core/layout/light.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>theme.css"> <link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>theme.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>custom.css"> <?php $this->showStyle(); ?>
<link rel="stylesheet" href="<?php echo self::DATA_DIR; ?>custom.css">
</head> </head>
<body> <body>
<?php $this->showNotification(); ?> <?php $this->showNotification(); ?>