fix for incorrect page rendering
there was a generic place holder that defaulted to the default page template to render pages. that's been fixed so it refers to the pages layout to know what template to use
This commit is contained in:
parent
5d74aafc9b
commit
44b8e9b5ad
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ class RenderService
|
|||
$template;
|
||||
$page['layout'] == 'index' ?
|
||||
$template = $this->theme . '.index' :
|
||||
$template = $this->theme . '.page';
|
||||
$template = $this->theme . '.' . $page['layout'];
|
||||
|
||||
$pageData = $this->sort->page($page, false);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue