diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 21:51:20 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 21:51:20 +0100 |
commit | aaa5016ea6ec00137868fef0693e9ccdb2ca633d (patch) | |
tree | d91a9661d68ba68b33b0522fb51bc5dcb0fe24a9 /app/view/templates/home.php | |
parent | 46ad69fce564ad5f935cbf3ff5b4ef8a41209075 (diff) | |
parent | 2211f5cbae94c09c03c95b4c4d010ddaf72738df (diff) | |
download | wcms-aaa5016ea6ec00137868fef0693e9ccdb2ca633d.tar.gz wcms-aaa5016ea6ec00137868fef0693e9ccdb2ca633d.zip |
Merge branch 'implement-css-parser'
Diffstat (limited to 'app/view/templates/home.php')
-rw-r--r-- | app/view/templates/home.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index 9c71b53..fa9ef63 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -1,4 +1,4 @@ -<?php $this->layout('layout', ['title' => 'home', 'css' => $css . 'home.css', 'favicon' => '']) ?> +<?php $this->layout('layout', ['title' => 'home', 'stylesheets' => [$css . 'home.css', $css . 'tagcolors.css'], 'favicon' => '']) ?> @@ -16,7 +16,7 @@ <?php $optlist = $optlist ?? null; - $this->insert('homemenu', ['user' => $user, 'opt' => $opt, 'optlist' => $optlist, 'pagelist' => $pagelist, 'faviconlist' => $faviconlist, 'editorlist' => $editorlist]); + $this->insert('homemenu', ['user' => $user, 'opt' => $opt, 'optlist' => $optlist, 'pagelist' => $pagelist, 'faviconlist' => $faviconlist, 'editorlist' => $editorlist, 'colors' => $colors]); ?> |