aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/layout.php
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2020-01-29 20:34:08 +0100
committervincent-peugnet <v.peugnet@free.fr>2020-01-29 20:34:08 +0100
commitb28f1a4a516f93044c632b254670dd21f52e625c (patch)
treeaa2661016383e51fe26d564d208ac302f6e48926 /app/view/templates/layout.php
parenta30e115d62f10183acb7ff946821aaf066d4a61e (diff)
downloadwcms-b28f1a4a516f93044c632b254670dd21f52e625c.tar.gz
wcms-b28f1a4a516f93044c632b254670dd21f52e625c.zip
new feature : colored tags
Diffstat (limited to 'app/view/templates/layout.php')
-rw-r--r--app/view/templates/layout.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/view/templates/layout.php b/app/view/templates/layout.php
index 9259fda..b255738 100644
--- a/app/view/templates/layout.php
+++ b/app/view/templates/layout.php
@@ -12,7 +12,11 @@
<link rel="shortcut icon" href="<?= Wcms\Model::faviconpath() . Wcms\Config::defaultfavicon() ?>" type="image/x-icon">
<?php } ?>
<title><?= $title ?></title>
- <link rel="stylesheet" href="<?= $css ?>">
+
+ <?php foreach ($stylesheets as $stylsheet) { ?>
+ <link rel="stylesheet" href="<?= $stylsheet ?>">
+ <?php } ?>
+
<?php
if (!empty(Wcms\Config::interfacecss())) {
echo '<link rel="stylesheet" href="' . Wcms\Model::csspath() . Wcms\Config::interfacecss() . '">';