forked from projects/fipamo
hot fix for template and empty layout on new page creation
This commit is contained in:
commit
dc08f60098
1 changed files with 5 additions and 1 deletions
|
@ -75,7 +75,11 @@ class Render
|
||||||
$limit = 4;
|
$limit = 4;
|
||||||
foreach ($pages as $page) {
|
foreach ($pages as $page) {
|
||||||
$pageOptions = Sorting::page($page);
|
$pageOptions = Sorting::page($page);
|
||||||
$template = $this->theme . "/" . $page["layout"] . ".twig";
|
|
||||||
|
$layout = $page["layout"];
|
||||||
|
//new pages have no layout, so defautl for now
|
||||||
|
$layout = "page";
|
||||||
|
$template = $this->theme . "/" . $layout . ".twig";
|
||||||
if (str_contains($page["layout"], "index")) {
|
if (str_contains($page["layout"], "index")) {
|
||||||
$location = "../public/index.html";
|
$location = "../public/index.html";
|
||||||
$dir = null;
|
$dir = null;
|
||||||
|
|
Loading…
Reference in a new issue