aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/layout.php
diff options
context:
space:
mode:
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() . '">';