déplacer showStyle sous showVendor

This commit is contained in:
LC 2023-01-06 15:40:14 +01:00
parent 9ef46da43f
commit f573a1fa71
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,8 @@ else { echo '<html lang="'.$lang.'">'; }
?>
<?php
$this->showFavicon();
$this->showVendor();
$this->showVendor();
$this->showStyle(); echo PHP_EOL;
?>
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css">
<link rel="stylesheet" href="<?php echo helper::baseUrl(false) . self::DATA_DIR; ?>theme.css">
@ -25,7 +26,6 @@ else { echo '<html lang="'.$lang.'">'; }
AND $this->getData(['module', $this->getUrl(0), 'config', 'feeds']) === TRUE ): ?>
<link rel="alternate" type="application/rss+xml" href="'<?php echo helper::baseUrl(). $this->getUrl(0) . '/rss';?>" title="fLUX rss">
<?php endif; ?>
<?php $this->showStyle(); echo PHP_EOL; ?>
<?php if (file_exists(self::DATA_DIR .'head.inc.html')) {
include(self::DATA_DIR .'head.inc.html');
}?>